/* CSS RESET & NORMALIZE */
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;
}
html { font-family: 'Roboto', Arial, sans-serif; line-height: 1.5; box-sizing: border-box; }
body {
  background: #181C21;
  color: #F1FAEE;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
able, caption, tbody, tfoot, thead, tr, th, td { border: 0; background: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; height: auto; }

:root {
  --color-primary: #1D3557;
  --color-secondary: #A8DADC;
  --color-accent: #F1FAEE;
  --color-bg-dark: #181C21;
  --color-bg-darker: #101417;
  --color-meta: #CCCCCC;
  --color-metal: #3C4A59;
  --color-steel: #5b6773;
  --color-focus: #FFD166;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-lg: 0 6px 28px 0 rgba(40,50,60,0.22);
  --shadow-md: 0 2px 8px 0 rgba(40,50,60,0.12);
  --shadow-card: 0 1.5px 8px 0 rgba(29,53,87,0.20);
  --border-metal: 1.5px solid #3C4A59;
  --transition: all 0.23s cubic-bezier(.34,1.56,.64,1);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* HEADER / NAVIGATION */
header {
  background: var(--color-bg-darker);
  box-shadow: 0 2px 8px 0 rgba(29,53,87,0.18);
  min-height: 80px;
  z-index: 1002;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 44px;
  width: auto;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  color: #E0E7EF;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
  background-color: #232A32;
}

.cta-primary {
  font-family: var(--font-display);
  background: linear-gradient(90deg, var(--color-secondary), #5185a3 90%);
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  border: 0.5px solid var(--color-secondary);
  transition: var(--transition);
  cursor: pointer;
  margin-left: 18px;
  outline: 0;
  display: inline-block;
}
.cta-primary:hover, 
.cta-primary:focus {
  background: linear-gradient(90deg, #55a7b7, var(--color-secondary) 100%);
  color: var(--color-accent);
  box-shadow: 0 4px 14px 0 rgba(70,120,200,0.28);
  border-color: var(--color-accent);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 1003;
  margin-left: 18px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #242a32;
  color: var(--color-focus);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1b2227f6;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.36,1,.64,1);
  padding: 28px 24px 24px 24px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 4px 12px 4px 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  z-index: 2010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-focus);
  background: rgba(88, 100, 130, 0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.18rem;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222931;
  color: var(--color-focus);
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* HERO + HEADINGS */
.hero {
  background: linear-gradient(120deg, #232A32 12%, var(--color-primary) 98%);
  color: var(--color-accent);
  padding: 54px 0 34px 0;
  box-shadow: 0 4px 18px 0 rgba(40,50,60,0.17);
}
.hero .container {
  display: flex;
  min-height: 320px;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  text-shadow: 0 2px 10px rgba(29,53,87,0.10);
  line-height: 1.13;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1.07rem;
  margin-bottom: 5px;
}

section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232A32;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid #29384a;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-accent);
  color: #1D3557;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 7px 0 rgba(20, 20, 22, 0.11);
  font-size: 1.06rem;
  margin-bottom: 20px;
  flex: 1 1 350px;
  min-width: 260px;
  border-left: 7px solid var(--color-secondary);
  position: relative;
}
.testimonial-card p {
  color: #1D3557;
}
.testimonial-card strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: #101417;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #20262b;
  border: var(--border-metal);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 22px 20px 16px 20px;
  min-width: 230px;
  flex: 1 1 250px;
}
.feature-item img {
  width: 44px; height: 44px; filter: grayscale(10%) brightness(0.82);
}

.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.service-item {
  background: #22272b;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1.5px solid #33445d;
  padding: 22px 20px 16px 20px;
  min-width: 240px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-item img {
  width: 38px;
  height: 38px;
  filter: grayscale(15%) brightness(0.96) drop-shadow(0 2px 4px #0b1116aa);
}
.service-price {
  margin-top: auto;
  background: #A8DADC23;
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  letter-spacing: 0.04em;
  border: 1px solid #2f444f;
}

.service-list {
  margin-bottom: 18px;
}
.service-list li {
  background: #20262b;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  padding: 18px 18px 13px 18px;
  border: var(--border-metal);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
}
.service-list h3 {
  color: var(--color-secondary);
  margin-bottom: 4px;
}


/* PRICING TABLE */
.service-pricing-table {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
  box-shadow: var(--shadow-card);
  background: #20262B;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 1.01rem;
}
.service-pricing-table th, .service-pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #263141;
  text-align: left;
}
.service-pricing-table th {
  background: #232A32;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 2px solid #29384a;
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}

/* TIMELINE (Workflow) */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.timeline-step {
  background: #21262b;
  border: var(--border-metal);
  border-radius: var(--radius);
  padding: 20px 18px 15px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  position: relative;
  box-shadow: var(--shadow-card);
}
.timeline-step img {
  width: 37px;
  height: 37px;
  opacity: 0.87;
  margin-bottom: 5px;
  filter: grayscale(12%) brightness(0.92);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #20262b;
  border-radius: var(--radius-sm);
  padding: 18px 20px 13px 22px;
  border-left: 6px solid var(--color-secondary);
  border-top: var(--border-metal);
  box-shadow: var(--shadow-md);
}
.faq-item h3 {
  color: var(--color-secondary);
}
.faq-contact {
  margin-top: 24px;
  padding: 15px 24px;
  background: #242A32;
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 1.09rem;
  border-left: 5px solid var(--color-metal);
}

/* BLOG */
.blog-list {
  padding-top: 28px;
  padding-bottom: 28px;
}
.categories-filter {
  font-size: 1.07rem;
  margin-bottom: 18px;
  color: var(--color-meta);
  display: flex;
  gap: 13px;
  align-items: center;
}
.categories-filter a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.19s, color 0.19s;
}
.categories-filter a:hover, .categories-filter a:focus {
  color: var(--color-accent);
  border-color: var(--color-secondary);
}
.latest-posts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 18px;
}
.latest-posts li {
  background: #21262b;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--color-primary);
  padding: 18px 20px 16px 25px;
}
.latest-posts h3 {
  color: var(--color-secondary);
  margin-bottom: 5px;
}
.latest-posts a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05em;
  margin-top: 7px;
  display: inline-block;
  transition: color 0.22s;
}
.latest-posts a:hover, .latest-posts a:focus {
  color: var(--color-focus);
}

/* NEWSLETTER CTA */
.newsletter-signup {
  background: linear-gradient(92deg, #22272b 28%, #29384a 120%);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.newsletter-signup h2 {
  margin-bottom: 7px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(90deg, var(--color-primary) 60%, #33445D 120%);
  color: var(--color-accent);
  border-radius: var(--radius);
  padding: 38px 24px 32px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-banner h2 {
  color: var(--color-accent);
}

/* CONTACT PAGE */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.address-block, .hours-block, .email-block {
  background: #21262b;
  border-radius: var(--radius-sm);
  padding: 18px 18px 14px 20px;
  min-width: 190px;
  flex: 1 1 220px;
  border-left: 5px solid var(--color-secondary);
  box-shadow: var(--shadow-md);
}
.address-block h3, .hours-block h3, .email-block h3 {
  color: var(--color-secondary);
  margin-bottom: 5px;
}
.email-block a {
  color: var(--color-secondary);
}
.email-block a:hover { color: var(--color-focus); }

/* Confirmation page styling */
.confirmation {
  padding: 44px 18px 38px 18px;
  background: #20262b;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 48px;
}

/* FOOTER */
footer {
  background: var(--color-bg-darker);
  border-top: 2px solid #232A32;
  margin-top: 80px;
  width: 100vw;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 20px 28px 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-focus);
}
footer p {
  color: #8B97A6;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/* TEXT & TYPOGRAPHY */
p, ul, li, table, blockquote {
  font-family: var(--font-body);
  color: #EAF3FB;
  font-size: 1.1em;
  margin-bottom: 9px;
  line-height: 1.6;
}
ul {
  list-style-type: disc;
  margin-left: 18px;
}
li {
  margin-bottom: 5px;
}
strong, b {
  font-weight: 700;
  color: var(--color-secondary);
}
.text-section {
  background: #21262b;
  border-radius: var(--radius-sm);
  padding: 22px 20px 8px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.text-section p {
  color: #EAF3FB;
}
.text-section a {
  color: var(--color-secondary);
  border-bottom: 1.5px dotted var(--color-secondary);
  transition: color 0.2s;
}
.text-section a:hover {
  color: var(--color-focus);
}

/* Core Values & Value List */
.core-values, .value-proposition, .step-support {
  background: #232A32;
  border-radius: var(--radius-sm);
  padding: 17px 18px 10px 20px;
  margin: 18px 0 16px 0;
  box-shadow: var(--shadow-md);
  color: var(--color-secondary);
  font-size: 1.08em;
}
.core-values ul, .value-proposition ul, .step-support ul {
  margin-left: 20px;
  margin-top: 5px;
}
.core-values li, .value-proposition li, .step-support li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #FCFDFE;
}
.core-values img {
  width: 22px; height: 22px;
}

/* Animations & Interactions */
.cta-primary, .mobile-menu-close, .mobile-menu-toggle, button {
  transition: var(--transition);
}
.card, .service-item, .feature-item, .timeline-step, .faq-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.15s;
}
.card:hover, .service-item:hover, .feature-item:hover, .timeline-step:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 16px 0 rgba(80, 170, 180, 0.14), var(--shadow-card);
  transform: translateY(-3px) scale(1.012);
}
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #171B1Eee;
  border-top: 2.5px solid #3C4A59;
  box-shadow: 0 -8px 18px rgba(20,22,24,0.15);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 12000;
  padding: 22px 22px 18px 22px;
  gap: 24px;
  animation: banner-slideup 0.55s;
}
@keyframes banner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: var(--color-accent);
  font-size: 1.08em;
  line-height: 1.45;
  max-width: 420px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  background: #21262b;
  color: var(--color-accent);
  border: 1.2px solid #4f6982;
  border-radius: var(--radius-sm);
  padding: 10px 20px 10px 20px;
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.cookie-btn.reject {
  background: #29384a;
  color: #f78e87;
  border-color: #5b6773;
}
.cookie-btn.settings {
  color: var(--color-accent);
  background: #181C21;
  border: 1.2px dashed #5b6773;
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 2px 10px 0 rgba(132,192,214,0.18);
}
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(22,24,28,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12300;
  animation: cookiefadein 0.22s;
}
@keyframes cookiefadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232A32;
  color: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 340px;
  max-width: 95vw;
  padding: 38px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 4px 0;
}
.cookie-cat .label {
  font-size: 1.09em;
  color: var(--color-accent);
}
.cookie-switch {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #252a2f;
  border-radius: 11px;
  border: 1.3px solid #4b5560;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-right: 7px;
}
.cookie-switch:checked {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #dee5ee;
  transition: left 0.2s;
}
.cookie-switch:checked:before {
  left: 22px;
  background: #1D3557;
}
.cookie-cat .desc {
  font-size: 1em;
  color: #9EA5B2;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-cat.essential .cookie-switch,
.cookie-cat.essential .label { opacity: 0.6; pointer-events: none; }
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  color: var(--color-accent);
  font-size: 1.45em;
  border: none;
  cursor: pointer;
  padding: 0 8px 2px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #29384adf; color: var(--color-focus); }

/* Responsive: MOBILE-FIRST ADJUSTMENTS */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 990px) {
  .container { max-width: 100%; }
  header .container { gap: 12px; }
  .footer-nav { gap: 12px; }
}
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .feature-grid, .service-grid { gap: 18px; }
  .timeline { gap: 14px; }
}
@media (max-width: 768px) {
  .section { padding: 30px 10px; }

  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid,
  .contact-info-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .timeline {
    flex-direction: column;
    gap: 14px;
  }
  .hero .container { min-height: unset; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .cta-banner, .newsletter-signup { padding: 24px 10px; }
  .confirmation { padding: 28px 10px 24px 10px; }
  .footer-nav { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .container { padding: 0 6px; }
  .section { padding: 18px 2px; }
  .cta-primary { padding-left: 16px; padding-right: 16px; font-size: 15px; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 14px 4px 16px 4px; }
}

/* Misc */
::-webkit-scrollbar {
  width: 10px;
  background: #21262b;
}
::-webkit-scrollbar-thumb {
  background: #33445d;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #47596f;
}

/* Hide cookie banner/modal until needed */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}

/* Utility Classes */
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-2 { margin-top: 16px !important; }

/* Card spacing if more than one card */
.card + .card,
.testimonial-card + .testimonial-card, 
.service-item + .service-item,
.feature-item + .feature-item {
  margin-top: 20px !important;
}

/* Spacing for sections */
section + section, .section + .section {
  margin-top: 40px;
}


/* INDUSTRIAL MODERN personality accents */
h1, h2, h3, h4 {
  text-transform: none;
  letter-spacing: 0.02em;
}
h1, h2 { border-left: 7px solid var(--color-metal); padding-left: 12px; }
.testimonial-card {
  border-left: 7px solid #8b99a3;
  font-style: italic;
}
.card, .feature-item, .service-item, .timeline-step, .faq-item {
  border-top: 1.8px solid #3C4A59;
}

/* End of CSS */
