/* RESET & BASE TYPOGRAPHY */
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;
  font-family: 'Roboto', Arial, sans-serif;
  background: #111927;
  min-height: 100vh;
  color: #f7fafd;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BRAND COLORS */
:root {
  --primary: #194C78;
  --secondary: #FAFAFA;
  --accent: #FFA600;
  --accent-neon: #ffe349;
  --surface: #192236;
  --surface-alt: #20345e;
  --border: #223355;
  --card-shadow: rgba(18, 51, 95, 0.11);
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 769px) {
  .content-wrapper {
    gap: 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #111927;
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--card-shadow);
}

/* HEADER & LOGO */
header {
  background: linear-gradient(90deg, #192236 0%, #20345e 100%);
  box-shadow: 0 2px 20px rgba(11,23,40, .11);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  color: #e7eaff;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  position: relative;
  transition: color 0.16s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-neon);
}

.cta-primary {
  margin-left: 32px;
  padding: 13px 36px;
  background: var(--accent);
  color: #172039;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 40px;
  box-shadow: 0 0 14px 2px rgba(255,166,0, 0.25);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background .18s, color .18s, box-shadow .18s, transform .18s;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #ffe349;
  color: #14223a;
  box-shadow: 0 0 24px 2px var(--accent);
  transform: translateY(-2px) scale(1.03);
}

.cta-secondary {
  margin-top: 10px;
  padding: 11px 30px;
  background: transparent;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--accent);
  border-radius: 32px;
  box-shadow: 0 0 8px 0 var(--accent-neon);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background .17s, color .17s, border .17s, box-shadow .17s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--accent);
  color: #181F2F;
  border-color: #ffe349;
  box-shadow: 0 0 20px 0 var(--accent-neon);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 32px;
  cursor: pointer;
  margin-left: 14px;
  border-radius: 6px;
  padding: 3px 10px;
  transition: background 0.17s;
  z-index: 99;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(255,166,0,0.10);
  outline: 2px solid var(--accent-neon);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;left: 0;
  width: 100vw;
  height: 100vh;
  background: #172039;
  box-shadow: 0 0 44px 20px rgba(18, 40, 79, 0.85);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 16px;
  padding-left: 0;
  z-index: 1100;
  transform: translateX(-105vw);
  transition: transform .36s cubic-bezier(.9,.1,.23,.96);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  margin-left: 20px;
  margin-bottom: 20px;
  z-index: 1110;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
  outline: 2px solid var(--accent-neon);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 18px 41px;
  width: 100%;
}
.mobile-nav a {
  font-size: 19px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 4px;
  padding: 11px 6px;
  margin-right: 0;
  transition: background 0.16s, color 0.16s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #223355;
  color: var(--accent);
}

@media (min-width: 1200px) {
  .mobile-menu,.mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1199px) {
  .main-nav {display:none;}
  .cta-primary {display:none;}
  .mobile-menu-toggle {display:block;}
}
@media (min-width: 1200px) {
  .main-nav{display: flex !important;}
  .cta-primary {display: inline-block !important;}
  .mobile-menu-toggle {display: none !important;}
}

/* HERO SECTIONS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FAFAFA;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.14;
}
h1 {
  font-size: 2.55rem;
  margin-bottom: 12px;
  color: var(--accent);
  text-shadow: 0 0 16px var(--accent-neon);
}
h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 9px;
}
h3 {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 7px;
}
h4 {font-size: 1.13rem;}

p,li,blockquote,address {
  font-size: 16px;
  color: #e3e8f1;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.58;
  margin-bottom: 6px;
}
ul, ol {
  list-style: disc inside;
  margin-bottom: 14px;
  padding-left: 18px;
  color: #c3cafe;
}
li strong {color: var(--accent); font-weight: 700;}

blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: #ffd16a;
  font-style: italic;
  background: rgba(36,55,91,.18);
}

.text-section {
  margin-top: 8px;
}

.text-section h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--accent);
}

.text-section ul {
  margin-top: 4px;
  margin-bottom: 14px;
}

/* FLEX UTILITY CLASSES & RESPONSIVE */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 3px 21px var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  padding: 30px 22px;
  transition: box-shadow .19s, transform .17s;
}
.card:hover,.card:focus-within {
  box-shadow: 0 6px 35px 0 rgba(255, 166, 0, 0.19),
              0 5px 37px 0 var(--card-shadow);
  transform: translateY(-4px) 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;
    gap: 24px;
  }
}
.testimonial-card {
  background: #fff;
  color: #171e2e;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(34,40,54,0.17);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card blockquote {
  color: #1e183b;
  background: none;
  font-size: 17px;
  border-left: 4px solid var(--accent);
}
.testimonial-card:hover {
  box-shadow: 0 2px 38px 5px var(--accent-neon);
  transform: scale(1.013);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(32,54,105,0.14),0 1px 0px #222a41;
  padding: 24px 22px;
}

/* FEATURES GRID STYLES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 215px;
  min-width: 215px;
  background: var(--surface-alt);
  border-radius: 12px;
  box-shadow: 0 1px 11px rgba(29,33,77,0.11);
  padding: 22px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 7px #ffe349);
  margin-bottom: 14px;
}
.feature:hover {
  box-shadow: 0 3px 22px 0 var(--accent);
  transform: translateY(-3px) scale(1.015);
}

/* TEAM LIST, SERVICE CARDS, CASE STUDIES, INDUSTRY */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.team-card {
  background: var(--surface);
  border-radius: 11px;
  padding: 24px 18px;
  box-shadow: 0 1px 10px rgba(25,49,91,0.12);
  margin-bottom: 20px;
  flex: 1 1 200px;
  text-align: left;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  list-style: none;
}
.values-list li {
  background: #0f2246;
  color: var(--accent);
  padding: 8px 17px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}
.brand-values {
  margin-top: 19px;
  background: #202f50;
  border-radius: 11px;
  padding: 18px 14px;
  color: var(--accent);
  font-weight: 500;
}
.innovation-icons {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.innovation-icons img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 11px var(--accent));
}

.service-card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(29,37,71, 0.13);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.service-card:hover {
  box-shadow: 0 2px 22px 0 var(--accent);
  transform: translateY(-3px) scale(1.016);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  background: #19263a;
  border-radius: 13px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 14px rgba(20,44,76,0.11);
}
.process-step img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 8px var(--accent));
}

.case-study {
  background: #fff;
  color: #16355f;
  border-radius: 16px;
  box-shadow: 0 1px 23px rgba(32,52,90, .13);
  padding: 26px 21px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.case-study:hover{
  box-shadow: 0 6px 33px 0 var(--accent-neon);
  transform: translateY(-4px) scale(1.015);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.industry-list > div {
  flex: 1 1 160px;
  background: #222f47;
  border-radius: 12px;
  color: var(--accent);
  padding: 18px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  gap: 7px;
  transition: box-shadow 0.13s, background 0.13s, color 0.13s;
}
.industry-list img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 9px var(--accent));
}
.industry-list > div:hover{
  background: #283e62;
  color: #ffe349;
  box-shadow:0 2px 30px 0 var(--accent);
}

/* PRICING TABLE BUILDS */
.pricing-table {
  background: #fff;
  color: #192753;
  border-radius: 15px;
  box-shadow: 0 2px 22px 0 rgba(25,44,85,0.10);
  padding: 29px 18px 21px 18px;
  min-width: 230px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-left: 6px solid var(--accent);
  transition: border-color .13s, box-shadow .16s, transform .15s;
}
.pricing-table strong {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}
.pricing-table:hover {
  border-color: #ffe349;
  box-shadow: 0 5px 30px 0 var(--accent-neon);
  transform: scale(1.015);
}
.comparison-chart {
  margin-top: 10px;
  background: var(--surface);
  color: #fff;
  border-radius: 10px;
  padding: 20px 14px;
}

.faq-item {
  background: #223355;
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 11px rgba(24,41,75, 0.13);
  padding: 22px 16px;
  margin-bottom: 18px;
}
.faq-item h3 { color: var(--accent); margin-bottom: 6px; font-size: 16px; }
.faq-item p { color: #def1ff; }

/* BLOG PREVIEW */
.blog-post-preview {
  background: var(--surface);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 14px rgba(21,35,68,0.13);
  padding: 25px 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.blog-post-preview:hover {
  box-shadow: 0 6px 33px 0 var(--accent);
  transform: scale(1.017);
}
.blog-post-preview h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #ffd16a;
  text-shadow: 0 0 8px var(--accent-neon);
}
.blog-post-preview a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color .16s;
}
.blog-post-preview a:hover,
.blog-post-preview a:focus {
  color: #ffe349;
  text-shadow: 0 0 8px var(--accent-neon);
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.categories-filter strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}
.categories-filter a {
  background: #181f2f;
  color: #ffe349;
  padding: 7px 15px;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  margin-right: 9px;
  margin-bottom: 8px;
  font-size: 15px;
  transition: color .15s, background .16s;
}
.categories-filter a:hover,
.categories-filter a:focus {
  background: var(--accent);
  color: #14223a;
  box-shadow: 0 0 12px 0 var(--accent);
}

/* FOOTER */
footer {
  background: linear-gradient(93deg, #172349 0%, #223355 100%);
  padding: 38px 0 32px 0;
  margin-top: 70px;
  color: #bfcbe2;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 10px;
}
.footer-nav a {
  color:#ffe349;
  text-decoration:none;
  font-size:15px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .03em;
  font-weight: 500;
  transition: color .13s, text-shadow .13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-neon);
}

footer p {
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  color: #bfcbe2;
  opacity: .85;
}

/* ADDRESS MAP */
.address-map {
  background: #212947;
  border-radius: 10px;
  color: #f1c669;
  margin-top: 20px;
  padding: 15px 11px;
  font-size: 16px;
}

/* GENERAL LINKS & INTERACTIONS */
a {
  color: var(--accent);
  text-decoration: underline;
  transition: color .13s, text-shadow .13s;
}
a:hover, a:focus {
  color: #ffe349;
  text-shadow: 0 0 8px var(--accent-neon);
}

button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

/* ICONS */
ul li img {
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 6px var(--accent));
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #252f4a;
  color: #fff;
  z-index: 1200;
  box-shadow: 0 -2px 18px 0 var(--card-shadow);
  padding: 20px 14px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .28s, transform .36s cubic-bezier(.85,.03,.38,.97);
  gap: 18px;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 16px;
  line-height: 1.54;
  margin-bottom: 0;
}
.cookie-consent-actions {
  display: flex;
  gap: 13px;
}
.cookie-action {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 21px;
  padding: 8px 24px;
  transition: background .17s, color .17s, box-shadow .13s;
}
.cookie-accept {
  background: var(--accent);
  color: #172039;
  box-shadow: 0 0 10px 0 var(--accent);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #ffe349;
  color: #172039;
}
.cookie-reject {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--accent);
  color: #14223a;
}
.cookie-settings {
  background: transparent;
  color: #e9eaff;
  border: 1px solid #eaecff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #181f2f;
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(18,29,61,0.76);
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #232e49;
  border-radius: 18px;
  color: #fff;
  padding: 30px 22px 22px 22px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 47px 0 var(--accent);
  position: relative;
  animation: popupFadeIn .31s forwards;
}
@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.38rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.cookie-category label, .cookie-category span {
  font-size: 15px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-right: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 17px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 6px;
  transition: color .14s, background .13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--accent);
  background: #121b32;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* RESPONSIVE DESIGN: MOBILE FIRST */
@media (max-width: 991px) {
  .main-nav {display: none;}
  .cta-primary {display: none;}
}
@media (max-width: 991px) {
  .feature-grid,
  .service-card,
  .industry-list,
  .team-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.86rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.08rem; }
  .container { padding: 0 9px;}
  .feature-grid, .content-grid, .industry-list, .team-list{
    flex-direction: column;
    gap: 17px;
  }
  .section,
  section {
    padding: 30px 2px;
  }
  header .container {height: 57px;}
  .logo img { height: 29px; }
  .testimonial-card, .card, .service-card, .pricing-table, .case-study, .faq-item, .blog-post-preview {
    padding: 17px 8px !important;
  }
  .testimonial-card blockquote {
    font-size: 15px;
    padding-left: 10px;
  }
}

/* SMOOTH ANIMATION FOR BUTTONS & LINKS */
button, .cta-primary, .cta-secondary, .cookie-action, .mobile-menu-toggle, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.14s, box-shadow 0.15s, transform 0.13s;
}

/* GENERAL UTILS */
.mt-1 {margin-top: 8px;}
.mt-2 {margin-top: 20px;}
.mb-2 {margin-bottom: 20px;}
.mb-3 {margin-bottom: 38px;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-accent {color: var(--accent);}
.text-white {color: #fff;}

::-webkit-selection {
  background: var(--accent);
  color: #172039;
}
::selection {
  background: var(--accent);
  color: #172039;
}

html {
  scroll-behavior:smooth;
}

/* VISUAL HIERARCHY SHADOWS */
.card, .service-card, .team-card, .pricing-table, .case-study, .feature {
  box-shadow: 0 1.5px 12px 0 rgba(25, 38, 60, 0.10);
}

/* FORMS (if present in future) */
input,textarea,select {
  background: #151b2d;
  color: #fff;
  border: 1.5px solid #26356b;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 12px;
  width: 100%;
  outline: none;
  transition: border-color .13s;
}
input:focus,textarea:focus,select:focus {
  border-color: var(--accent);
}

/* ACCESSIBILITY FOCUS STATES */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus, .footer-nav a:focus {
  outline: 2px solid var(--accent-neon);
  outline-offset: 1px;
}

/* HIDE NONE ESSENTIALS DISPLAY */
[hidden] { display:none !important; }
