/* ========== 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;
  background: #131C26;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}
:root {
  --primary: #162D47;
  --secondary: #F5A623;
  --accent: #F7F9FA;
  --accent-dark: #dfe3e6;
  --text: #F7F9FA;
  --text-inverse: #131C26;
  --grey: #313943;
  --surface: #232F39;
  --border: #3C4A57;
  --shadow: rgba(22, 45, 71, 0.18);
  --radius: 7px;
  --border-thin: 1.5px solid var(--border);
  --transition: 0.24s cubic-bezier(.45,0,.55,1), background 0.15s linear;
  --shadow-lg: 0 6px 24px rgba(20, 30, 43, 0.20), 0 1.5px 4px rgba(0,0,0,0.025);
}

/* ========== TYPOGRAPHY ========== */
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: #131C26;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--text);
}
strong, b {
  font-weight: 600;
}
label {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.05em;
}

/* ========== CONTAINER & FLEX HELPERS ========== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.flex-align {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  min-height: 76px;
  gap: 15px;
}
header img {
  width: 168px;
  min-width: 124px;
  filter: brightness(1.1) contrast(1.15);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--accent);
  padding: 8px 0;
  letter-spacing: 0.03em;
  border-bottom: 2.5px solid transparent;
  transition: border 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: var(--secondary);
  color: var(--text-inverse);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.15s, background 0.18s, box-shadow var(--transition);
  border: none;
  margin-left: 18px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #e89018;
  color: var(--accent);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 20px var(--shadow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid var(--secondary);
  box-shadow: 0 1.5px 8px var(--shadow);
  text-transform: none;
  margin-top: 14px;
  margin-right: 10px;
  transition: background 0.15s, color 0.13s, box-shadow var(--transition);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary);
  color: var(--text-inverse);
  box-shadow: 0 3px 14px var(--shadow);
  border-color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  padding: 2.5px 8px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #212d3b;
  color: var(--secondary);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 380px;
  height: 100vh;
  background: var(--surface);
  box-shadow: -10px 0 24px rgba(15,22,32,0.55);
  z-index: 120;
  padding-top: 72px;
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 22px;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.65,0,.35,1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 121;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: var(--accent);
  padding: 12px 0px;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0 0 5px 5px;
  transition: color 0.14s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(245,166,35,0.08);
}
@media (max-width: 1024px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  header img {
    width: 120px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 16px;
    font-size: 0.97rem;
    margin-left: 0;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(120deg, #181F29 60%, #243957 100%);
  padding: 64px 0 44px 0;
  box-shadow: 0 8px 48px var(--shadow);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 16px;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.7rem;
  line-height: 1.14;
  text-shadow: 0 2px 24px #000a11;
}
.hero p {
  color: var(--accent-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ========== SECTION LAYOUTS & FLEX ========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 2.5px 12px var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.21s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px #181F29;
  transform: translateY(-2px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========== FEATURES GRID & ITEMS ========== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 8px 0 0 0;
}
.feature {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 9px var(--shadow);
  padding: 27px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  border: var(--border-thin);
  transition: box-shadow 0.18s, border 0.15s;
}
.feature img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: grayscale(.35) contrast(1.2) brightness(1.1) drop-shadow(0 1px 8px #181F29);
}
.feature h3 {
  color: var(--secondary);
  margin-bottom: 5px;
}
.feature:hover,
.feature:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 4.5px 28px #181F29;
}

/* ========== SERVICES / COURSES CARDS ========== */
.service-list, .services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-item, .service-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 12px var(--shadow);
  padding: 25px 20px 28px 20px;
  margin-bottom: 20px;
  min-width: 244px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.18s, transform 0.19s, border 0.16s;
}
.service-card ul {
  margin-bottom: 7px;
  padding-left: 13px;
}
.service-card ul li {
  list-style: disc inside;
  color: var(--accent-dark);
  margin-bottom: 2px;
}
.service-item .price, .service-card .price {
  font-size: 1.12rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 8px 0 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}
.service-item:hover,
.service-card:hover,
.service-card:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 8px 36px #181F29;
  transform: translateY(-2.5px) scale(1.017);
}

/* ========== COMPARE FEATURES / SUCCESS STATS ========== */
.compare-features ul,
.success-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 14px;
}
.compare-features li,
.success-stats li {
  background: #162D47;
  color: var(--accent);
  border-radius: var(--radius);
  padding: 11px 17px;
  font-size: 1.07rem;
  margin-bottom: 8px;
  box-shadow: 0 1px 7px #00091b18;
  font-family: 'Montserrat', Arial, sans-serif;
  border-left: 4px solid var(--secondary);
}

/* ========== TESTIMONIALS ========== */
.testimonials, .testimonial-slider {
  margin-top: 18px;
  margin-bottom: 18px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--accent);
  color: var(--text-inverse);
  padding: 22px 24px;
  min-width: 270px;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 12px var(--shadow);
  margin-bottom: 20px;
  border-top: 5px solid var(--secondary);
  font-size: 1.06rem;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card h3 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.testimonial-card p {
  color: var(--text-inverse);
  font-size: 1.06rem;
  margin-bottom: 5px;
}
.testimonial-meta {
  color: #687785;
  font-size: 0.98rem;
  font-weight: 500;
  font-style: italic;
}
.before-after-metric {
  display: flex;
  gap: 12px;
  font-size: 0.99rem;
  color: #475467;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 28px #181F29;
  transform: translateY(-2px) scale(1.015);
}

/* ========== CTA SECTIONS ========== */
.cta {
  background: linear-gradient(95deg, #232F39 35%, #181F29 100%);
  border-radius: var(--radius);
  padding: 56px 22px;
  box-shadow: 0 1.6px 16px var(--shadow);
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}
.cta.newsletter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.cta form input[type="email"],
.cta form input[type="text"],
.cta form textarea {
  border: var(--border-thin);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 1rem;
  min-width: 240px;
  background: #162D47;
  color: var(--accent);
  transition: border 0.16s, box-shadow 0.13s;
}
.cta form input[type="email"]:focus,
.cta form input[type="text"]:focus,
.cta form textarea:focus {
  border: 1.7px solid var(--secondary);
  box-shadow: 0 0 0 1.5px var(--secondary);
  outline: none;
}
.cta.newsletter form label {
  margin-right: 8px;
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
  background: none;
}

/* ========== FORMS & CONTACT ========== */
form label {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  color: var(--secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
form input[type="email"],
form input[type="text"],
form textarea {
  width: 100%;
  border: var(--border-thin);
  background: #162D47;
  color: var(--accent);
  font-size: 1rem;
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 12px 15px;
  transition: border 0.18s;
}
form textarea {
  min-height: 96px;
  resize: vertical;
}
form input[type="email"]:focus, form input[type="text"]:focus,
form textarea:focus {
  border: 1.7px solid var(--secondary);
  outline: none;
}
form button, .btn-primary {
  margin-top: 8px;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px var(--shadow);
  padding: 24px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.12s;
  border: 1.5px solid var(--border);
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: var(--secondary);
  font-weight: 600;
}
.faq-item div {
  color: var(--accent-dark);
  font-size: 1rem;
}
.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px #181F29;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  box-shadow: 0 -1.5px 16px var(--shadow);
  position: relative;
  padding: 36px 0 10px 0;
  margin-top: 44px;
  color: var(--accent-dark);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 11px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
  letter-spacing: 0.03em;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 35px;
}

/* ========== LEGAL / PRIVACY / POLICY PAGES ========== */
.legal {
  background: #161F2A;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px var(--shadow);
}
.text-section {
  padding: 25px 16px;
  margin: 0 auto 12px auto;
  background: none;
  font-size: 1.08rem;
  color: var(--accent-dark);
}
.text-section h1 {
  color: var(--secondary);
}
.text-section a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
}
.text-section ul {
  margin-top: 15px;
  margin-bottom: 17px;
  padding-left: 21px;
}
.text-section ul li {
  list-style-type: disc;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 1rem;
}

/* ========== CONTACT DETAILS ========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--accent-dark);
  margin-bottom: 18px;
  font-size: 1.06rem;
}
.contact-details a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
}
.address-details {
  color: var(--accent-dark);
  font-size: 1.05rem;
  background: var(--surface);
  padding: 16px 24px;
  border-radius: var(--radius);
}

/* ========== GUIDES / RESOURCE LISTS ========== */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.guides-list h3 {
  color: var(--secondary);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.guides-list ul {
  margin-left: 20px;
  margin-bottom: 6px;
}
.guides-list li {
  list-style: disc inside;
  margin-bottom: 3.5px;
  color: var(--accent-dark);
  font-size: 1.03rem;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 -8px 32px #000b16cc;
  z-index: 130;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 16px 22px 16px;
  font-size: 1.08rem;
  border-top: 3.5px solid var(--secondary);
  animation: slideUpBanner 0.48s cubic-bezier(.56,0,.38,1);
}
@keyframes slideUpBanner {
  from {transform: translateY(100%);} to {transform: translateY(0);}
}
.cookie-banner .cookie-btn {
  margin: 0 6px;
  padding: 9px 17px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  background: var(--secondary);
  color: var(--text-inverse);
  transition: background 0.17s, color 0.12s, box-shadow 0.11s;
  box-shadow: 0 1.5px 8px var(--shadow);
  cursor: pointer;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--primary);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #e89018;
  color: var(--accent);
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #131c26;
  border-radius: var(--radius);
  z-index: 131;
  min-width: 325px;
  max-width: 99vw;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 3.5px 24px #010812a6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.28s cubic-bezier(.4,0,.6,1);
}
@keyframes cookieModalIn {
  from {transform: translate(-50%, 50%) scale(0.87); opacity: .1;} to {transform: translate(-50%,-50%) scale(1); opacity: 1;}
}
.cookie-modal h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.cookie-modal label {
  font-size: 1.01rem;
  margin-right: 10px;
  color: var(--accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  color: var(--secondary);
}

/* Styles for toggles in cookie modal */
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 24px;
  background: var(--grey);
  border-radius: 14px;
  transition: background 0.19s;
}
.cookie-toggle input {
  opacity: 0;
  width: 46px;
  height: 24px;
  margin: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--secondary);
  transition: left 0.19s, background 0.16s;
}
.cookie-toggle input:checked + span {
  left: 26px;
  background: var(--secondary);
}
.cookie-category.disabled label {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-category.disabled .cookie-toggle {
  background: #475467;
}

/* ========== MEDIA QUERIES FOR RESPONSIVE DESIGN ========== */
@media (max-width: 1090px) {
  .services-cards, .features-grid, .service-list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features-grid, .service-list, .services-cards, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .content-wrapper, .text-section {
    padding: 4px 0;
    max-width: 99vw;
  }
  section, .section {
    padding: 25px 2.5vw;
  }
  .feature,
  .service-card,
  .service-item,
  .card {
    min-width: 0;
    padding: 16px 8px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 16px 10px;
    min-width: 0;
  }
  .cta, .cta.newsletter {
    padding: 28px 4vw;
  }
}

/* ========== CUSTOM MICRO-INTERACTIONS & ANIMATIONS ========== */
.card, .feature, .service-item, .service-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.17s, transform 0.14s, border 0.13s;
}
.card:hover, .feature:hover, .service-item:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 10px 38px #000b19cc;
  transform: translateY(-2.5px) scale(1.016);
  border-color: var(--secondary);
}

/* ========== ACCESSIBILITY: FOCUS STATES FOR INTERACTIVES ========== */
a:focus, button:focus, .main-nav a:focus, .footer-nav a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ========== SCROLLBARS & MISC ========== */
::-webkit-scrollbar {
  width: 8px;
  background: #1d2329;
}
::-webkit-scrollbar-thumb {
  background: #253751;
  border-radius: 7px;
}

/* ========== Z-INDEX CONTROL FOR NAV, MODALS, BANNER ========== */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 140 !important;
}

/* ========== DARK/INDUSTRIAL MODERN BUTTON ICONS (OPTIONAL SVG INSERTS) ========== */
.btn-primary svg, .btn-secondary svg {
  margin-right: 6px;
}

/* ========== FLEXBOX LAYOUT ENFORCEMENT (MUST NOT USE GRID) ========== */
/* All cards, lists, layouts already use flexbox with appropriate gaps above. */
