/* =================================================================
   CSS RESET & NORMALIZE (mobile-first) - Wide compatibility
   ================================================================= */

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, 
main, 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: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #181d23;
  color: #f3f6f9;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181d23;
  color: #f3f6f9;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #5abfd6;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #f3f6f9;
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 12px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* =================================================================
   FONT IMPORTS
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* =================================================================
   INDUSTRIAL MODERN COLOR PALETTE & CSS VARIABLES
   ================================================================= */
:root {
  --color-primary: #16435a;
  --color-secondary: #5abfd6;
  --color-accent: #f3f6f9;
  --color-bg: #181d23;
  --color-dark: #15191d;
  --color-steel: #313943;
  --color-metal: #868b92;
  --color-highlight: #5abfd6;
  --color-light: #f3f6f9;
  --color-error: #e05649;
  --radius-md: 10px;
  --shadow-lt: 0 2px 8px rgba(22,67,90,0.10), 0 2px 16px rgba(22,67,90,0.05);
  --shadow-md: 0 4px 20px rgba(22,67,90,0.15), 0 2px 12px rgba(31,38,45,0.14);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =================================================================
   GLOBAL STRUCTURE
   ================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

section {
  background: none;
}

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

/* =================================================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ================================================================= */
h1, h2, h3, .brand-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(22,67,90,0.09);
}

h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--color-accent);
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4, h5, h6 {
  font-family: var(--font-display);
}

.brand-tagline {
  font-style: italic;
  font-weight: 600;
  color: var(--color-highlight);
  font-size: 1.13rem;
  margin: 16px 0;
}

p, blockquote, ul, ol, li, table, span, strong {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-accent);
  font-size: 1rem;
}

blockquote {
  border-left: 4px solid var(--color-secondary);
  background: rgba(49,57,67, 0.85);
  padding: 16px 24px;
  margin: 12px 0;
  border-radius: var(--radius-md);
  color: var(--color-highlight);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* =================================================================
   FLEXBOX LAYOUTS - MANDATORY CLASSES
   ================================================================= */
.card-container, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-grid, .card-grid {
  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: 24px;
  }
}

.testimonial-card, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-steel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lt);
  padding: 20px;
  min-width: 220px;
  max-width: 320px;
}

@media (max-width: 768px) {
  .feature-item {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-steel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lt);
  padding: 24px;
}

.card-container {
  gap: 24px;
}

/* ========== Spacing for all content cards/sections ========== */
section + section {
  margin-top: 40px;
}

.card + .card, .feature-item + .feature-item, .testimonial-card + .testimonial-card {
  margin-left: 0;
  margin-top: 20px;
}

/* =================================================================
   HEADER & NAV (INDUSTRIAL MODERN)
   ================================================================= */
header {
  background: var(--color-dark);
  box-shadow: 0 2px 16px 0 rgba(22,67,90,0.07);
  padding: 0;
  border-bottom: 2px solid var(--color-metal);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  min-height: 70px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.012em;
  border-radius: 4px;
  padding: 6px 10px;
  background: none;
  transition: color 0.2s, background 0.2s;
  font-size: 1rem;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: #181d23;
  outline: none;
}

nav .btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 1px 4px rgba(22,67,90,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav .btn-primary:hover, nav .btn-primary:focus {
  background: var(--color-light);
  color: var(--color-dark);
  outline: 2px solid var(--color-secondary); 
}

/* ========== Mobile Navigation ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 21;
  margin-left: 12px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: var(--color-light);
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU COMPONENT */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(24,29,35,0.96);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,.27,.33,1.3);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin: 30px 32px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-light);
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  border-radius: 2px;
  width: 80%;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  background: transparent;
  margin: 0 auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn-primary, a.btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  padding: 10px 30px;
  box-shadow: var(--shadow-lt);
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-light);
  color: var(--color-primary);
  box-shadow: 0 2px 16px 0 rgba(90,191,214,0.18);
  transform: translateY(-3px) scale(1.025);
}

.btn-secondary, a.btn-secondary {
  background: var(--color-dark);
  color: var(--color-accent);
  border: 2px solid var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  padding: 10px 28px;
  box-shadow: var(--shadow-lt);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  box-shadow: 0 2px 16px 0 rgba(90,191,214,0.20);
  border-color: var(--color-light);
  transform: translateY(-3px) scale(1.02);
}

button, input[type="button"], input[type="submit"] {
  font-family: var(--font-display);
  font-size: 1rem;
}

/* =================================================================
   CARDS
   ================================================================= */
.card {
  background: var(--color-steel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--color-accent);
  padding: 28px 24px 26px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* =================================================================
   FEATURE GRID, SERVICE GRID, PRICING TABLES
   ================================================================= */
.feature-grid, .service-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.feature-item, .service-item, .package {
  background: var(--color-steel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lt);
  padding: 22px 18px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.package {
  border: 2px solid var(--color-metal);
  position: relative;
}
.package-featured {
  border-color: var(--color-secondary);
  background: linear-gradient(100deg, #16435acc 80%, #5abfd620 100%);
  box-shadow: 0 4px 22px 4px rgba(90,191,214,0.07);
  z-index: 1;
}
.price-point {
  font-size: 1.50rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 18px;
}

@media (max-width: 900px) {
  .feature-grid, .service-grid, .pricing-table {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .service-item, .package {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* =================================================================
   TESTIMONIALS (Accessible, High-Contrast)
   ================================================================= */
.testimonial-list,
.testimonial-slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.testimonial-card {
  background: var(--color-accent);
  color: #192127;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(22,67,90,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 34px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow 0.23s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 32px 3px rgba(22,67,90,0.18);
  transform: translateY(-2px) scale(1.021);
}

.testimonial-card p {
  color: #222c35;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 7px;
}
.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin-bottom: 6px;
}

@media(max-width: 600px) {
  .testimonial-card {
    max-width: 100%;
    padding: 14px 10px;
    font-size:0.98rem;
  }
}

/* =================================================================
   TABLES
   ================================================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-steel);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  box-shadow: var(--shadow-lt);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid #39414a;
  color: var(--color-accent);
}
.comparison-table th {
  background: var(--color-primary);
  color: var(--color-light);
  font-weight: 700;
}
.comparison-table td {
  background: rgba(49,57,67, 0.97);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td {
    display: block;
    width: 100%;
  }
  .comparison-table tr {
    margin-bottom: 16px;
  }
  .comparison-table th {
    text-align: left;
    background: var(--color-primary);
  }
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  background: var(--color-dark);
  border-top: 2px solid var(--color-metal);
  color: var(--color-light);
  padding: 34px 0 0 0;
  margin-top: 70px;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
footer nav {
  margin: 14px 0;
  gap: 18px;
}
footer nav a {
  color: var(--color-accent);
  background: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 2px 8px;
  border-radius: 2px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-secondary);
  color: #192127;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  color: var(--color-metal);
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
}
.footer-copy {
  font-size: 0.90rem;
  color: var(--color-metal);
  margin: 12px 0 24px 0;
}

/* =================================================================
   VALUE & TEAM LISTS (ABOUT PAGE)
   ================================================================= */
.value-list, .user-rights, .policy-highlights, .cookie-types-list, .terms-points {
  list-style-type: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-list li, .user-rights li, .policy-highlights li, .cookie-types-list li, .terms-points li {
  background: rgba(49,57,67, 0.90);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 12px 19px;
  color: var(--color-light);
  box-shadow: 0 1px 6px rgba(22,67,90,0.10);
}

.team-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.team-member {
  background: var(--color-steel);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(31,38,45,0.14);
  min-width: 200px;
  max-width: 280px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.team-member h3 {
  margin-bottom: 0;
  color: var(--color-secondary);
}
.team-member span {
  color: var(--color-metal);
  font-size: 0.96rem;
}

@media (max-width: 800px) {
  .team-bio-grid {
    flex-direction: column;
    gap: 16px;
  }
  .team-member {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* =================================================================
   CONTACT DETAILS (CONTACT PAGE)
   ================================================================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
}
.contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* =================================================================
   SUPPORT CONTACT (FAQ PAGE)
   ================================================================= */
.support-contact {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-light);
}
.support-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* =================================================================
   CTA BUTTONS LAYOUT (THANK YOU PAGE)
   ================================================================= */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}

/* =================================================================
   MISCELLANEOUS
   ================================================================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.benefit-list li {
  background: rgba(49,57,67, 0.87);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--color-light);
  min-width: 190px;
  max-width: 310px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-list img {
  width: 20px;
  height: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 0 0 24px 0;
}
.faq-list h3 {
  color: var(--color-highlight);
  margin-bottom: 5px;
  font-size: 1.08rem;
  font-weight: 700;
}

/* =================================================================
   COOKIE CONSENT BANNER + MODAL
   ================================================================= */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 18px;
  z-index: 2000;
  background: var(--color-steel);
  color: var(--color-light);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(22,67,90,0.18);
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: cookieBannerIn 0.37s cubic-bezier(.7,.36,.4,1.2);
}
@keyframes cookieBannerIn {
  0% {
    opacity:0; transform: translateY(26px) scale(0.97);
  }
  100% {
    opacity:1; transform: none;
  }
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  min-width: 110px;
  padding: 9px 12px;
  font-size: 1rem;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  background: rgba(24,29,35, 0.78);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: auto;
  transition: opacity 0.28s;
  opacity: 1;
}
.cookie-modal {
  background: var(--color-steel);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  width: 98%;
  padding: 28px 22px 20px 22px;
  position: relative;
  margin-bottom: 50px;
  animation: cookieModalDrop 0.43s cubic-bezier(.64,1.5,.52,1);
}
@keyframes cookieModalDrop {
  0% { opacity:0; transform: translateY(68px) scale(0.95); }
  100% { opacity:1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-secondary);
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--color-light);
}
.cookie-categories {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--color-secondary);
  padding: 9px 10px;
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-accent);
  margin-left: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 19px; height:19px;
}
.cookie-category .cookie-essential {
  color: var(--color-highlight);
  font-size: 0.94rem;
  margin-left: 3px;
}
.cookie-modal .btn-primary {
  margin-top: 18px;
  min-width:140px;
  padding:9px 10px;
}

/* ===================== ANIMATION CLASSES ===================== */
.fade-in {
  animation: fadeIn 0.42s cubic-bezier(.5,1.45,.5,.8);
}
@keyframes fadeIn {
  from{opacity:0;}to{opacity:1;}
}

/* =================================================================
   RESPONSIVE MEDIA QUERIES - FLEX COLUMNS, SPACING, BUTTONS
   ================================================================= */
@media (max-width: 1024px) {
  .container {
    padding-left: 14px; padding-right: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 98vw; padding-left: 9px; padding-right: 9px; }
  .content-wrapper, .section {
    padding: 18px 0;
    gap: 18px;
  }
  .cta-buttons { flex-direction: column; gap: 14px; }
}

@media (max-width: 600px) {
  .feature-grid, .service-grid, .benefit-list, .team-bio-grid, .pricing-table {
    gap: 10px !important;
  }
  .feature-item, .service-item, .team-member, .package {
    padding: 13px 7px;
  }
  .text-image-section { gap:15px; }
}

/* ========================= FORM ELEMENTS ====================== */
input, textarea, select {
  background: #21272f;
  color: var(--color-light);
  border: 1.5px solid var(--color-secondary);
  border-radius: 4px;
  font-size: 1rem;
  padding: 8px 11px;
  margin-bottom:14px;
  font-family: var(--font-body);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-highlight);
  border-color: var(--color-light);
}

/* ========================= SCROLLBARS for dark mode ========== */
::-webkit-scrollbar {
  width: 9px; background: #232a31;
}
::-webkit-scrollbar-thumb {
  background: #38404a;
  border-radius: 6px;
}

/* ========== HIDE SCROLL for mobile menu/modal body =========== */
body.menu-open, body.modal-open {
  overflow: hidden !important;
}

/* =================== Accessibility & Fallbacks =================== */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-secondary);
}

/* =================== Micro-interaction on links ================== */
a, button, .btn-primary, .btn-secondary {
  transition: background 0.17s, color 0.17s, box-shadow 0.12s, border 0.13s, transform 0.14s;
}

/* ======= Hide visually for screen readers only ======= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;}

/* ==================== END OF STYLE ==================== */
