﻿/* ============================================================
   GOLE Africa — Shared Brand Stylesheet
   Matches: gole.africa.com  (Odoo to WHMCS conversion)
   ============================================================ */

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

:root {
  --nav-start:    #0c2d48;
  --nav-end:      #2EC8C0;
  --primary:      #2EC8C0;
  --primary-dark: #25b0a8;
  --primary-btn:  #3DD8CA;
  --navy:         #0c2d48;
  --dark:         #1a2c3d;
  --text:         #334155;
  --muted:        #64748b;
  --footer-bg:    #e0f7f4;
  --footer-text:  #1a2c3d;
  --white:        #ffffff;
  --light:        #f8fffe;
  --border:       #e2e8f0;
  --card-shadow:  0 4px 20px rgba(46,200,192,0.10);
  --radius:       10px;
  --whmcs:        /billing;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--white);
  background-image: url('../images/designer-graphic.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  line-height: 1.65;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── FLOATING NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 10px;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  background: transparent;
  pointer-events: none;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 58px;
  gap: 1rem;
  pointer-events: auto;
  /* pill visual — updated to full pill */
  background: linear-gradient(to right, var(--nav-start) 0%, #1a7a74 55%, var(--nav-end) 100%);
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(12,45,72,0.40);
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 1;
  justify-content: center;
}

.navbar-menu a {
  color: rgba(255,255,255,0.92);
  font-size: .82rem;
  font-weight: 500;
  padding: .38rem .75rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}

.navbar-menu a:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* Active link = teal text, no background pill */
.navbar-menu a.active {
  background: transparent;
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.navbar-icon,
.navbar-actions > a:not(.btn-signin) {
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
  padding: .38rem .5rem;
  border-radius: 6px;
  transition: background .2s;
  text-decoration: none;
}

.navbar-icon:hover,
.navbar-actions > a:not(.btn-signin):hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-signin {
  background: rgba(255,255,255,0.15);
  color: var(--white) !important;
  font-size: .78rem;
  font-weight: 600;
  padding: .36rem 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s;
}

/* Hide icon inside Sign In if present */
.btn-signin i {
  display: none;
}

.btn-signin:hover { background: rgba(255,255,255,0.28); }

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1.8rem;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-btn);
  color: var(--navy);
  border-color: var(--primary-btn);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,200,192,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ── SOLUTION STRIP ──────────────────────────────────────── */
.solution-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .65rem 2.5rem;
}

.solution-strip .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.solution-strip > .container > span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  white-space: nowrap;
}

.solution-links {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.solution-links a {
  font-size: .82rem;
  color: var(--text);
  padding: .3rem .8rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all .2s;
  white-space: nowrap;
}

.solution-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-teal {
  background: var(--primary);
  color: var(--navy);
  border-color: var(--primary);
}

.btn-teal:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-sm {
  padding: .38rem 1.1rem;
  font-size: .82rem;
}

/* ── HERO BANNER (homepage) ──────────────────────────────── */
.hero-banner {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 78px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,45,72,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 720px;
}

.hero-tagline {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
  opacity: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--white);
}

/* Default hero paragraph — white */
.hero-content p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

/* Teal subtitle variant */
.hero-content .hero-subtitle {
  color: var(--primary);
  font-weight: 600;
  opacity: 1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark-pill {
  background: rgba(12,45,72,0.85);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-dark-pill:hover {
  background: var(--navy);
  border-color: var(--white);
}

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

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

/* ── TEAL VALUE SECTION ──────────────────────────────────── */
.teal-section {
  background: #d5f0ec;
}

.teal-section-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

.teal-graphic-left,
.teal-graphic-right {
  flex-shrink: 0;
  opacity: 0.8;
}

.teal-section-text .section-label { margin-bottom: .4rem; }

.teal-section-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.25;
}

.teal-section-text p {
  color: var(--text);
  font-size: .97rem;
  margin-bottom: 1.2rem;
}

.teal-check-list {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.teal-check-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--text);
}

.teal-check-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── IMAGE CARDS GRID (3-col services) ───────────────────── */
.img-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* ── PARALLAX CONTENT ────────────────────────────────────── */
.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

/* ── START YOUR JOURNEY SECTION ──────────────────────────── */
.journey-section {
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
}

.journey-card {
  position: relative;
  max-width: 1100px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(46,200,192,0.15);
}

.journey-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
}

.journey-content {
  position: relative;
  z-index: 1;
  padding: 5rem 3rem;
}

.journey-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--navy);
}

.journey-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .journey-content { padding: 3rem 1.5rem; }
  .journey-content h2 { font-size: 1.5rem; }
  .journey-content p { font-size: .95rem; }
}

/* ── GRAPHIC SPLIT (text left, image right) ──────────────── */
.graphic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.graphic-split-text .section-label { margin-bottom: .4rem; }

.graphic-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
}

.graphic-split-text p {
  color: var(--text);
  font-size: .97rem;
  margin-bottom: 1rem;
}

.graphic-split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PAGE HEADER (inner pages with hero bg) ──────────────── */
.page-header {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 5.5rem 2.5rem 3rem;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,45,72,0.58);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-header-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
  opacity: 1;
}

.page-header-content h1,
.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--white);
}

/* Page header main paragraph — white */
.page-header-content p,
.page-header p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 620px;
  margin: 0 auto;
  color: var(--white);
}

/* Teal subtitle on page headers (second <p> after h1) */
.page-header-content p + p,
.page-header-content .page-header-subtitle {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 1;
  margin-top: .5rem;
}

/* ── TAB BUTTONS (cloud solutions) ──────────────────────── */
.tab-btn {
  padding: .6rem 1.8rem;
  border-radius: 30px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  font-size: .92rem;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s;
}

.tab-btn:hover { background: rgba(46,200,192,0.12); }

.tab-btn-active {
  background: var(--primary);
  color: var(--navy);
}

/* ── PRICING NOTE ────────────────────────────────────────── */
.pricing-note {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ── PRODUCT CARDS GRID (Heimdal, 2x2) ───────────────────── */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── SECTION LAYOUT ──────────────────────────────────────── */
.section { padding: 5rem 2.5rem; }
.section-alt { background: var(--light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.section-title p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.25rem;
  color: var(--white);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── IMAGE-TOP SERVICE CARD ──────────────────────────────── */
.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--primary);
}

.img-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.img-card-body {
  padding: 1.5rem 1.75rem;
}

.img-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.img-card-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .graphic-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .teal-section-inner {
    grid-template-columns: 1fr;
  }
  .teal-graphic-left,
  .teal-graphic-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-radius: 12px;
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(12,45,72,0.3);
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a {
    padding: .6rem 1rem;
    width: 100%;
  }
  .navbar-toggle { display: flex; }
  .section { padding: 3rem 1.25rem; }
  .hero-banner { min-height: 100svh; }
  .page-header { min-height: 60vh; }
}  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(46,200,192,0.18);
  border-color: var(--primary);
}

.img-card-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.img-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,45,72,0.72) 0%, transparent 55%);
}

.img-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 1;
  background: rgba(46,200,192,0.9);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 20px;
}

.img-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.img-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.img-card-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.img-card-body .link {
  display: inline-block;
  margin-top: .85rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
}

/* ── PRICING TABLES ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all .25s;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #f0fffe 0%, var(--white) 100%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--primary);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 0 0 8px 8px;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .2rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-period {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: .88rem;
  color: var(--text);
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .55rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230c2d48' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ── FEATURES LIST ───────────────────────────────────────── */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
}

.feature-item p { font-size: .85rem; color: var(--muted); }

/* ── PARALLAX / FIXED BG SECTION ─────────────────────────── */
.parallax-section {
  background-image: url('../images/hero-bg.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 6rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,45,72,0.68);
}

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

.parallax-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .75rem;
}

.parallax-section p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6b66 100%);
  padding: 4rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .75rem;
}

.cta-banner p {
  font-size: 1rem;
  opacity: .88;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  padding: 4.5rem 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='450' viewBox='0 0 700 450'%3E%3Cellipse cx='600' cy='350' rx='280' ry='200' fill='none' stroke='%232EC8C0' stroke-width='1' opacity='.12'/%3E%3Cellipse cx='600' cy='350' rx='200' ry='140' fill='none' stroke='%232EC8C0' stroke-width='1' opacity='.08'/%3E%3C/svg%3E") right bottom no-repeat;
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand img { height: 66px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: .9rem;
  color: var(--footer-text);
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.footer-links a {
  display: block;
  font-size: .9rem;
  color: var(--footer-text);
  padding: .32rem 0;
  transition: color .2s;
  text-decoration: none;
}

.footer-links a:hover { color: var(--primary); }

.footer-contact p {
  font-size: .9rem;
  color: var(--footer-text);
  margin-bottom: .5rem;
  line-height: 1.55;
}

.footer-contact a { color: var(--primary); text-decoration: none; }

/* Social icons — no emoji, just text/FA symbols */
.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  transition: all .2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46,200,192,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* ── HEIMDAL PRODUCT CARDS ────────────────────────────────── */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,200,192,0.16);
  border-color: var(--primary);
}

.product-card-img {
  height: 180px;
  background-size: cover;
  background-position: center top;
  background-color: var(--navy);
}

.product-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.product-card-body h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}

.product-card-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-card-body .link {
  display: inline-block;
  margin-top: .75rem;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .teal-section-inner { grid-template-columns: 1fr; }
  .teal-graphic-left, .teal-graphic-right { display: none; }
  .graphic-split { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .solution-strip .container { justify-content: center; }
}

@media (max-width: 768px) {
  .navbar { left: .5rem; right: .5rem; top: 8px; }
  .navbar-inner { border-radius: 8px; padding: 0 1rem; }
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: .5rem; right: .5rem;
    background: var(--nav-start);
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    z-index: 998;
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { padding: .75rem 2rem; border-radius: 0; width: 100%; font-size: .88rem; }
  .navbar-toggle { display: flex; }
  .section { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .parallax-section { background-attachment: scroll; }
  .hero-banner { min-height: 400px; }
  .hero-content h1 { font-size: 1.8rem; }
  .solution-strip { display: none; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
