/* ===== CSS RESET & BASE STYLES ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f5f5f7;
  color: #172241;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #13305f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b7973a;
  outline: none;
}

/* ===== BRAND COLOR VARIABLES ===== */
:root {
  --primary: #13305f;
  --secondary: #13c1be;
  --accent: #f5f5f7;
  --gold: #b7973a;
  --deep-navy: #172241;
  --white: #fff;
  --offwhite: #f5f5f7;
  --success: #3eb97f;
  --danger: #c44c32;
  --shadow: 0 6px 32px 0 rgba(32, 27, 50, 0.08), 0 1.5px 4px 0 rgba(187, 151, 58, 0.05);
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
h3 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--deep-navy);
}
strong {
  font-weight: 700;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Cards, Grids & Flex Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.16s;
  border: 1.5px solid rgba(187, 151, 58, 0.06);
}
.card:hover {
  box-shadow: 0 9px 36px 0 rgba(187,151,58,0.17), 0 2px 6px 0 rgba(32,27,50,0.09);
  transform: translateY(-3px) scale(1.02);
}
.content-grid, .feature-grid, .service-cards, .services-grid, .team-section, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.content-grid { gap: 20px; }
.text-image-section, .company-contact-info, .support-channels {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section {
  margin-bottom: 24px;
}
/* Testimonial cards & sliders */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 14px;
  flex: 1 1 320px;
  min-width: 240px;
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--deep-navy);
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 1024px) {
  .testimonial-slider {
    gap: 12px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .services-grid, .team-section, .case-study-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .company-contact-info,
  .support-channels {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
/* Prevent Overlap & Provide Spacing */
.card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* ===== NAVIGATION ===== */
header {
  background: var(--white);
  box-shadow: 0 3px 16px 0 rgba(19,48,95,0.07);
  z-index: 100;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--deep-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.28s;
}
.main-nav a.cta-primary {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(187,151,58,0.16);
  margin-left: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(19,48,95,0.07);
  color: var(--gold);
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: var(--primary);
  color: var(--gold);
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  padding: 8px 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 120;
  transition: color 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--gold);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,48,95,0.93);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.8,0.13,0.16,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 34px 14px 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s, transform 0.17s;
}
.mobile-menu-close:active {
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 0 38px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  line-height: 1.7;
  transition: color 0.21s, text-shadow 0.3s;
  padding: 4px 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  text-shadow: 0 1px 16px rgba(187,151,58,0.18);
}
@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 15px;
    gap: 18px;
  }
}

/* ===== HERO, CTA BUTTONS ===== */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(96deg, #13305f 65%, #b7973a 100%);
  min-height: 340px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 24px 0 rgba(32, 27, 50, 0.13);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 64px 0 64px 0;
  margin-bottom: 0;
  color: var(--white);
}
.hero h1,
.hero p {
  color: var(--white);
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 30px;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 13px 38px;
  border-radius: 22px;
  font-size: 1.16rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 24px 0 rgba(187,151,58,0.11);
  transition: background 0.21s, color 0.17s, box-shadow 0.18s, transform 0.15s;
  margin-right: 12px;
  margin-bottom: 12px;
}
.cta-primary {
  background: var(--gold);
  color: var(--primary);
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--primary);
  color: var(--gold);
  transform: scale(1.045);
  box-shadow: 0 6px 32px 0 rgba(19,48,95,0.19);
}
.cta-secondary {
  background: var(--primary);
  color: var(--gold);
  border: 2px solid var(--gold);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 5px 28px 0 rgba(187,151,58,0.13);
  transform: scale(1.035);
}

/* ===== ICONS AND INLINE ELEMENTS ===== */
.feature-grid img, .industry-icons img, .company-contact-info img, .support-channels img, .contact-info-minimal img, .business-hours img {
  max-width: 34px;
  margin-right: 12px;
  vertical-align: middle;
}
.industry-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.industry-icons span {
  display: flex;
  align-items: center;
  background: var(--offwhite);
  border-radius: 9px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px 0 rgba(19,48,95,0.07);
  border: 1.2px solid rgba(19,48,95,0.05);
}

/* ===== LISTS AND TEXT SECTIONS ===== */
.text-section ul, .company-contact-info ul, .support-channels ul, .contact-info-minimal ul, .rights-list, .cookies-list, .articles-list, .whitepapers ul, .faq ul, .next-steps ul {
  padding-left: 22px;
  margin-bottom: 18px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section p,
.text-section ul,
.company-contact-info ul,
.support-channels ul {
  margin-bottom: 8px;
}
.text-section li {
  font-size: 1rem;
  color: var(--deep-navy);
  padding-left: 3px;
}
ul.articles-list li,
.whitepapers ul li,
.faq ul li {
  color: var(--primary);
  font-weight: 500;
}
.rights-list li,
.cookies-list li {
  color: var(--primary);
}

/* ===== FORMS (minimal for contact or consent) ===== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 11px 15px;
  border: 1.5px solid var(--primary);
  border-radius: 9px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(19,48,95,0.04);
  width: 100%;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(187,151,58,0.10);
}

/* ===== CARDS, CASE STUDIES, TEAM, OUTCOME HIGHLIGHTS ===== */
.team-section,
.case-study-list {
  gap: 32px;
}
.team-section > div, .case-study-list > div {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 30px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.15s;
  border-left: 4px solid var(--gold);
  margin-bottom: 20px;
}
.team-section > div:hover, .case-study-list > div:hover {
  box-shadow: 0 9px 32px 0 rgba(19,48,95,0.14);
  transform: translateY(-2px) scale(1.03);
}
.outcome-highlights {
  background: var(--offwhite);
  border-radius: 11px;
  padding: 20px 20px 18px 19px;
  box-shadow: 0 2px 10px 0 rgba(32, 27, 50, 0.09);
  margin-top: 16px;
  color: var(--primary);
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--gold);
  box-shadow: 0 -4px 36px 0 rgba(19,48,95,0.16);
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 20px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.16s;
  letter-spacing: 0.02em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff9d8;
}
.footer-contact p {
  color: #fff8f0;
  font-size: 0.98rem;
  margin-bottom: 6px;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/* ===== COOKIES CONSENT BANNER (Fixed, modal, smooth) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -3px 24px 0 rgba(32, 27, 50, 0.13);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 22px 32px 18px 22px;
  z-index: 9900;
  font-family: 'Roboto', Arial, sans-serif;
  border-top: 2.5px solid var(--gold);
  animation: slideUpBanner 0.44s cubic-bezier(.68,-0.37,.57,1.37);
  transition: transform 0.25s, opacity 0.17s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
@keyframes slideUpBanner {
  0% {transform: translateY(130px);opacity: 0;}
  90%{opacity: 1;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 16px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-actions button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1.04rem;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s, transform 0.12s;
}
.cookie-actions .accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: var(--primary);
  color: var(--gold);
  transform: scale(1.07);
}
.cookie-actions .reject {
  background: #eee6d0;
  color: var(--primary);
  border: 1px solid var(--gold);
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-actions .settings {
  background: none;
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: var(--gold);
  color: var(--primary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px 14px 8px;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,34,65,0.77);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 7px 64px 0 rgba(19,48,95,0.18);
  padding: 40px 30px 28px 30px;
  max-width: 370px;
  width: 95%;
  text-align: left;
  color: var(--primary);
  animation: modalPopIn 0.38s;
}
@keyframes modalPopIn {
  from { transform: scale(0.91); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.28rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 6px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: var(--deep-navy);
}
.toggle-switch {
  display: inline-block;
  width: 44px;
  height: 23px;
  position: relative;
}
.toggle-switch input[type="checkbox"] {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eee6d0;
  border-radius: 16px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background: var(--secondary);
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(21px);
  background: var(--gold);
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-modal-actions .accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .accept:focus {
  background: var(--primary);
  color: var(--gold);
}
.cookie-modal-actions .cancel {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: var(--gold);
  color: var(--primary);
}

/* ===== MISCELLANEOUS COMPONENT SPACING ===== */
.map-location {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.next-steps {
  margin-top: 18px;
  background: var(--offwhite);
  border-radius: 9px;
  padding: 16px 18px 16px 18px;
}
.events-calendar, .webinar-announcements {
  margin: 14px 0 16px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(19,48,95,0.04);
  padding: 17px 16px;
}
.faq, .faq-snippet {
  margin: 17px 0 10px 0;
  background: #f9f7ee;
  border-radius: 8px;
  padding: 13px 18px;
}
.business-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* ======= RESPONSIVE ADJUSTMENTS ======= */
@media (max-width: 1200px) {
  .container { max-width: 96vw; padding: 0 10px; }
}
@media (max-width: 900px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .container { max-width: 98vw; }
  .content-wrapper { padding: 25px 5px; }
  .footer-wrapper { padding: 28px 5px; }
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.28rem; }
  h2 { font-size: 1.09rem; }
  .section, .content-wrapper { padding: 18px 4vw; }
  .hero .content-wrapper { padding: 24px 0 24px 0; }
  .card, .testimonial-card, .team-section>div, .case-study-list>div { padding: 18px 9px; border-radius: 10px; }
  .footer-wrapper { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-nav { gap: 8px; }
}

/* ===== MICRO-INTERACTIONS ===== */
button, .cta-primary, .cta-secondary {
  transition: background 0.16s, color 0.16s, transform 0.13s, box-shadow 0.19s;
}
button:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.96);
}

/* ===== UTILITY CLASSES ===== */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.d-flex { display: flex !important; }
.d-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.gap-20 { gap: 20px !important; }

/* ========= END OF CSS ========= */
