/* Frost Gearbox Solutions – TECH FUTURISTIC THEME CSS */
/* --- 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- CUSTOM PROPERTIES & FONTS --- */
:root {
  --color-primary: #1A2636;
  --color-secondary: #F2B705;
  --color-accent: #E3E6EB;
  --color-bg: #121926;
  --color-bg-section: #212B3E;
  --color-card: #1A2636;
  --color-white: #fff;
  --color-text: #E3E6EB;
  --color-text-dark: #121926;
  --color-neon: #F2B705;
  --color-footer: #19202C;

  --font-display: 'Exo', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
  margin-top: 0;
}

header {
  background: var(--color-primary);
  box-shadow: 0 2px 20px 0 rgba(26,38,54,0.10);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-bg-section);
  color: var(--color-secondary);
  outline: none;
}
.cta.primary {
  background-color: var(--color-secondary);
  padding: 13px 32px;
  font-family: var(--font-display);
  color: #212B3E;
  font-size: 18px;
  border-radius: 32px;
  box-shadow: 0 0 16px 2px rgba(242,183,5,0.15), 0 2px 8px rgba(0,0,0,0.11);
  font-weight: bold;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.1s;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-neon);
  color: var(--color-card);
  box-shadow: 0 0 32px 7px rgba(242,183,5,0.25);
  transform: translateY(-2px) scale(1.03);
  border: 2px solid var(--color-accent);
  outline: none;
}
.cta.secondary {
  background: transparent;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
  padding: 11px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  border-radius: 32px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 8px 0 rgba(242,183,5,0.12);
  margin-top: 30px;
  margin-bottom: 5px;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--color-neon);
  color: var(--color-card);
  border-color: var(--color-neon);
  box-shadow: 0 0 20px 3px rgba(242,183,5,0.18);
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  background: transparent;
  border: none;
  margin-left: 12px;
  z-index: 110;
}

/* MOBILE MENU (OVERLAY) */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26,38,54,0.99);
  transform: translateX(-100vw);
  opacity: 0;
  visibility: hidden;
  z-index: 1500;
  transition: transform 0.30s cubic-bezier(.57,.09,.53,.97), opacity .23s .06s, visibility .18s;
  box-shadow: 0 6px 48px 12px rgba(25,32,44,0.44);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  padding: 18px 24px 12px 10px;
  align-self: flex-end;
  margin-bottom: 20px;
  margin-right: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  align-items: flex-start;
  margin-left: 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: 0.01em;
  padding: 13px 0 13px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover {
  color: var(--color-secondary);
  background: var(--color-bg-section);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #1A2636 0%, #212B3E 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 4px solid var(--color-neon);
  box-shadow: 0 6px 60px 0 rgba(26,38,54,0.29);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  gap: 26px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-accent);
  letter-spacing: .02em;
  font-weight: 800;
}
.hero .subheadline {
  color: #C7CEDA;
  font-size: 20px;
  margin-top: 14px;
  margin-bottom: 8px;
}

/* --- SECTION BASE SPACING & WRAPPER --- */
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 16px;
  margin-top: 0;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.09;
}
h2 {
  font-size: 2rem;
  color: var(--color-secondary);
}
h3 {
  font-size: 1.45rem;
  color: var(--color-neon);
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
}
.text-section {
  font-size: 1.08rem;
  color: var(--color-accent);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
p {
  margin-bottom: 14px;
  margin-top: 0;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-accent);
  padding-left: 0;
  line-height: 1.8;
  position: relative;
}
ul li strong {
  color: var(--color-neon);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .01em;
}

/* --- CARDS, FLEX CONTAINERS & SPACING PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  box-shadow: 0 4px 20px rgba(26,38,54,0.13);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--color-accent);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1.5px solid #232F44;
}
.card:hover {
  box-shadow: 0 6px 38px 0 rgba(242,183,5,0.16), 0 8px 22px rgba(26,38,54,0.13);
  border-color: var(--color-neon);
  transition: box-shadow .18s, border-color .18s;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(26,38,54,0.12);
  margin-bottom: 20px;
  margin-top: 14px;
  border-left: 5px solid var(--color-neon);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: var(--color-text-dark);
}
.testimonial-card strong {
  color: var(--color-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TABLES --- */
table {
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 10px;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 2px 15px rgba(26,38,54,0.08);
  margin: 30px 0 18px 0;
}
thead {
  background: var(--color-bg-section);
}
th, td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid #2D3951;
}
th {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.04rem;
}
tr:last-child td {
  border-bottom: none;
}

/* --- FOOTER --- */
footer {
  background: var(--color-footer);
  color: var(--color-accent);
  padding: 54px 0 22px 0;
  margin-top: 60px;
  font-size: 16px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 10px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 260px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 2px;
}
.footer-brand p {
  color: var(--color-neon);
  font-size: 1.05rem;
  line-height: 1.4;
  font-family: var(--font-display);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 16px;
  transition: color .18s;
  padding: 2px 6px;
  border-radius: 5px;
}
.footer-nav a:hover {
  color: var(--color-neon);
  background: rgba(240, 180, 5, 0.08);
}
.footer-contact {
  font-size: 1rem;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer small {
  color: #A0ABB6;
  margin-top: 14px;
  font-size: 14px;
  width: 100%;
  text-align: center;
  display: block;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--color-card);
  border-top: 3px solid var(--color-neon);
  box-shadow: 0 -4px 36px 0 rgba(20,25,36,0.10);
  color: var(--color-accent);
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  gap: 22px;
  transition: transform 0.36s cubic-bezier(.42,.85,.23,.98);
  font-size: 1.07rem;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 0%;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 23px;
  font-size: 1.01rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-neon);
  color: var(--color-card);
  border: 2px solid var(--color-neon);
  transition: background 0.2s, color 0.2s, border-color .15s;
  margin-right: 2px;
  min-width: 120px;
}
.cookie-banner button:last-child {
  background: none;
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: var(--color-neon);
  color: var(--color-card);
  box-shadow: 0 2px 9px 0 rgba(242,183,5,.16);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3400;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,38,54,0.88);
  align-items: center;
  justify-content: center;
  transition: opacity .18s, visibility .18s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: var(--color-accent);
  color: var(--color-card);
  border-radius: 18px;
  padding: 34px 32px 30px 32px;
  box-shadow: 0 6px 50px 0 rgba(26,38,54,0.20);
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.04rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 16px;
  color: var(--color-card);
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-card);
  margin-bottom: 10px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f5f6f9;
  color: var(--color-text-dark);
  border-radius: 22px;
  padding: 10px 18px;
  font-size: 1.09rem;
  font-weight: 500;
}
.cookie-category.essential {
  opacity: 0.6;
  filter: grayscale(0.2);
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ccd2de;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}
.cookie-toggle-checkbox:checked + .cookie-toggle {
  background: var(--color-neon);
}
.cookie-toggle-switch {
  position: absolute;
  top: 2px; left: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-toggle-checkbox:checked + .cookie-toggle .cookie-toggle-switch {
  left: 16px;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal button {
  background: var(--color-neon);
  color: var(--color-card);
  border-radius: 23px;
  font-weight: bold;
  padding: 10px 28px;
  font-size: 1.00rem;
  border: 2px solid var(--color-neon);
  transition: background .14s, color .14s;
}
.cookie-modal button:focus,
.cookie-modal button:hover {
  background: var(--color-card);
  color: var(--color-neon);
}


/* --- ANIMATION CLASSES (used in menu/banner/modal) --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(30px); }
}

/* --- GENERAL FORM ELEMENTS --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid #687891;
  background: #171E28;
  color: var(--color-accent);
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-neon);
  outline: none;
}
label {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* --- DETAILS & EMPHASIS --- */
em {
  color: var(--color-secondary);
  font-style: italic;
}
strong {
  color: var(--color-neon);
  font-weight: 700;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container {
    gap: 14px;
  }
  footer .container {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  header nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    min-height: 230px;
    padding: 30px 0;
  }
  .content-wrapper, .footer-nav, .footer-contact, .footer-brand {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
  }
  .text-image-section, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  .testimonial-card {
    padding: 16px;
    font-size: 0.99rem;
  }
  section {
    padding: 32px 5px;
    margin-bottom: 44px;
  }
  footer .container {
    flex-direction: column !important;
    gap: 22px !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 540px) {
  .hero h1, h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .cta.primary, .cta.secondary, .cookie-banner button, .cookie-modal button {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .cookie-banner {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 8px;
    font-size: 15px;
  }
  .cookie-banner .cookie-banner-buttons {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal-dialog {
    padding: 17px 8px 13px 11px;
    min-width: unset;
    max-width: 98vw;
    font-size: .96rem;
  }
  .cookie-modal-title {
    font-size: 1.07rem;
  }
}

/* --- FOCUS ACCESSIBILITY & MICRO-INTERACTIONS --- */
a:focus, button:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
  z-index: 2;
}
a, .cta.primary, .cta.secondary, button {
  transition: background .18s, color .18s, border-color .18s, box-shadow .13s;
}

/* --- EXTRAS: SHADOWS, NEON EFFECTS, SLEEK DIVIDERS --- */
hr {
  border: 0;
  border-top: 1.5px solid var(--color-bg-section);
  margin: 32px 0;
}
.neon-text {
  color: var(--color-neon) !important;
  text-shadow: 0 0 6px #F2B705, 0 0 24px #F2B70544;
}

/* --- UTILITY CLASSES TO MANAGE SPACING AND FLEX --- */
.mb-24 {
  margin-bottom: 24px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.d-flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.gap-20 {
  gap: 20px !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.justify-between {
  justify-content: space-between !important;
}

/* --- END --- */
