/* 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 {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  min-height: 100vh;
  background: #131b28;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F3FAFE;
  font-size: 16px;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2af5b6;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:active {
  color: #4bf7d6;
}
strong {
  font-weight: 600;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* CUSTOM SCROLLBAR */
body::-webkit-scrollbar {
  width: 8px;
  background: #234E70;
}
body::-webkit-scrollbar-thumb {
  background: #1B8B6A;
  border-radius: 6px;
}

/* BRANDING VARIABLES */
:root {
  --primary: #234E70;
  --secondary: #1B8B6A;
  --accent: #F3FAFE;
  --text-main: #F3FAFE;
  --text-light: #a5cfff;
  --surface: #1e2630;
  --card-bg: #232c3b;
  --shadow: 0 2px 24px 0 rgba(32,217,245,0.09);
  --neon: #2af5b6;
  --danger: #e34b39;
  --warning: #ffd052;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
  color: #F3FAFE;
}
h1 {
  font-size: 2.375rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
  margin-top: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-top: 18px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .content-wrapper > ul, .content-wrapper > ol {
  margin-bottom: 18px;
}
.section:last-child {
  margin-bottom: 0;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

/* HEADER & NAV */
header {
  background: linear-gradient(90deg, #1B8B6A 0%, #234E70 100%);
  position: relative;
  z-index: 110;
  box-shadow: 0 4px 24px 0 rgba(16,222,255,0.10);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 80px;
  justify-content: flex-start;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .03em;
  color: #F3FAFE;
  padding: 8px 8px;
  position: relative;
  transition: color .18s;
  z-index: 2;
}
.main-nav a.cta-primary {
  background: var(--neon);
  color: #00384e;
  padding: 10px 22px;
  font-size: 1.08rem;
  border-radius: 32px;
  margin-left: auto;
  box-shadow: 0 2px 12px 0 rgba(42,245,182,0.18);
  font-weight: 600;
  transition: background .2s, color .2s, box-shadow .2s;
  border: none;
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #00ffc2;
  color: #1B8B6A;
  box-shadow: 0 6px 32px 0 rgba(42,245,182,0.22);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--neon);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--neon);
  font-size: 2.25rem;
  padding: 4px 16px;
  border: none;
  align-items: center;
  cursor: pointer;
  z-index: 104;
  transition: color .15s, background .15s;
}
.mobile-menu-toggle:focus {
  background: rgba(36,244,181,0.07);
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(19,27,40,0.97);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(0.9,0,0.3,1);
  box-shadow: 4px 0 36px 0 rgba(34,78,112,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  padding: 18px 26px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 0;
  transition: color .16s;
  z-index: 1002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 32px 32px 32px;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--font-display);
  text-decoration: none;
  padding: 12px 0;
  width: 100%;
  transition: color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(100deg, #14253b 0%, #1B8B6A 80% 100%);
  border-bottom: 1.5px solid #0b1730;
  padding-bottom: 54px;
  box-shadow: 0 10px 32px 0 rgba(44,245,232,0.05);
}
.hero .container {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.4rem;
  text-shadow: 0 2px 24px rgba(42,245,182,.12);
  color: #fff;
}
.hero p {
  font-size: 1.125rem;
  color: var(--accent);
  opacity: 0.92;
}

/* FLEX GRIDS */
.feature-grid, .pricing-table, .blog-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 10px;
}
.feature-grid > div, .pricing-table > div, .blog-list > div, .card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 24px 24px 24px;
  flex: 1 1 270px;
  min-width: 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .20s, border-color .20s, background .23s;
  border: 1.5px solid transparent;
  position: relative;
}
.feature-grid > div:hover, .pricing-table > div:hover, .blog-list > div:hover, .card:hover {
  border-color: var(--neon);
  box-shadow: 0 8px 32px 0 rgba(42,245,182,0.16);
  background: #182e38;
  z-index: 2;
}
.feature-grid img,
.pricing-table img {
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 8px #1B8B6A11);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fcfdfe;
  color: #1a2234;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(34,78,112,0.19);
  margin-bottom: 23px;
  min-width: 250px;
  max-width: 650px;
  border-left: 4px solid var(--neon);
}
.testimonial-card p {
  color: #1a2234;
  font-weight: 500;
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.testimonial-card strong {
  display: block;
  color: #234E70;
  margin-bottom: 2px;
  font-size: 1.01rem;
}
.testimonial-card span {
  color: #1B8B6A;
  font-size: 1.01rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

/* PRICING */
.pricing-table {
  margin-top: 26px;
  margin-bottom: 10px;
}
.pricing-table > div {
  text-align: left;
  flex: 1 1 270px;
  border: 1.5px solid #283d59;
  background: #232c3b;
  transition: border-color .2s;
}
.pricing-table > div h3 {
  color: var(--neon);
  font-size: 1.31rem;
  margin-bottom: 7px;
}
.pricing-table > div p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: #b6fbe1;
}
.pricing-table ul {
  margin: 0;
  padding: 0 0 0 17px;
}
.pricing-table li {
  color: #F3FAFE;
  font-size: 1rem;
  margin-bottom: 9px;
}

.plan-comparison {
  margin: 30px 0 0 0;
  background: #18212b;
  padding: 22px 19px;
  border-radius: 8px;
  color: #eaeff8;
  font-size: 1.03rem;
  box-shadow: 0 2px 12px 0 rgba(27,139,106,0.16);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-list > div {
  background: #18202a;
  border-radius: 10px;
  padding: 15px 18px;
  color: #fafdff;
  min-width: 250px;
  flex: 1 1 250px;
  box-shadow: 0 2px 10px 0 rgba(42,245,182,0.04);
  border-left: 2.3px solid var(--neon);
}

/* BLOG PREVIEWS */
.blog-list {
  margin-bottom: 0;
}
.blog-post-preview {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 3px 16px 0 rgba(36,244,181,0.09);
  padding: 24px 18px 18px 18px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.3px solid #2af5b622;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.blog-post-preview h3 {
  color: #2af5b6;
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.blog-post-preview p {
  color: #F3FAFE;
  font-size: 1.01rem;
  margin-bottom: 14px;
}
.blog-post-preview a {
  color: #1B8B6A;
  font-weight: 500;
  font-size: 1.01rem;
  border-bottom: 1.3px dashed #2af5b6cc;
  transition: color .17s, border-bottom-color .17s;
}
.blog-post-preview:hover,
.blog-post-preview:focus {
  border-color: var(--neon);
  box-shadow: 0 8px 32px 0 rgba(42,245,182,0.13);
  transform: translateY(-3px) scale(1.015);
}
.blog-post-preview a:hover {
  color: #00ffc2;
  border-bottom-color: #00ffc288;
}

/* BLOG FILTERS */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-filters input[type="search"] {
  flex: 1 1 180px;
  max-width: 320px;
  padding: 8px 18px;
  border-radius: 22px;
  border: 1.4px solid #2af5b67a;
  background: #1e2630;
  color: #F3FAFE;
  font-size: 1rem;
  outline: none;
  margin-right: 13px;
  transition: border-color .19s, box-shadow .19s;
}
.blog-filters input[type="search"]:focus {
  border-color: #2af5b6;
  box-shadow: 0 3px 12px 0 #2af5b628;
}
.blog-filters ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-filters ul li a {
  color: #2af5b6;
  padding: 7px 14px;
  border-radius: 18px;
  background: transparent;
  transition: background .16s, color .16s;
  font-size: 0.97rem;
  font-family: var(--font-body);
}
.blog-filters ul li a:hover, .blog-filters ul li a.active {
  background: #234E70;
  color: #fff;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(97deg, #123051 70%, #1B8B6A 120%);
  text-align: center;
  padding-top: 45px;
  padding-bottom: 54px;
  box-shadow: 0 2px 22px 0 rgba(40,83,112,0.13);
}
.cta .content-wrapper {
  align-items: center;
}
.cta p {
  color: #F3FAFE;
  font-size: 1.28rem;
  margin-bottom: 26px;
}

.cta-primary,
.newsletter-form button,
button.cta-primary {
  display: inline-block;
  background: var(--neon);
  color: #1a2234;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 33px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 #2af5b61d;
  letter-spacing: 0.012em;
  margin: 0 3px;
  transition: background .18s, color .18s, box-shadow .19s, outline .13s;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus,
.newsletter-form button:hover {
  background: #00ffc2;
  color: #00384e;
  box-shadow: 0 6px 32px 0 rgba(42,245,182,0.22);
}

/* NEWSLETTER FORM */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  padding: 11px 21px;
  border-radius: 28px;
  border: 1.5px solid #2af5b65d;
  background: #212947;
  color: #e8fafd;
  font-size: 1rem;
  transition: border-color .15s;
  outline: none;
  margin-right: 4px;
}
.newsletter-form input[type="email"]:focus {
  border-color: #2af5b6;
}

/* FOOTER */
footer {
  background: #101827;
  color: #e3ecfd;
  border-top: 1.5px solid #24364e;
  box-shadow: 0 -2px 32px 0 #1B8B6A07;
  font-size: 0.97rem;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 20px;
  align-items: flex-start;
}
.footer-logo img {
  width: 44px;
  height: auto;
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #c0e5fb;
  padding: 4px 9px;
  transition: color .13s;
  font-family: var(--font-body);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact p {
  color: #c0e5fb;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  width: 15px;
  height: 15px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  transition: filter .21s;
  filter: brightness(1.3) saturate(1.3);
}
.footer-social a:hover img {
  filter: brightness(2.2) saturate(2) drop-shadow(0 1px 4px var(--neon));
}
.footer-copyright {
  color: #3ea6ce;
  font-size: .97rem;
  margin-top: 7px;
}

/* SPECIAL SECTIONS */
.knowledge-base, .video-tutorials {
  padding: 17px 20px;
  background: #16202a;
  border-radius: 12px;
  margin-bottom: 16px;
  margin-top: 10px;
  box-shadow: 0 2px 10px 0 #2af5b62d;
}
.knowledge-base h3, .video-tutorials h3 {
  margin-bottom: 9px;
  color: var(--neon);
  font-size: 1.07rem;
  margin-top: 0px;
}
.knowledge-base ul, .video-tutorials ul {
  margin: 0;
  padding: 0 0 0 16px;
}
.knowledge-base li, .video-tutorials li {
  margin-bottom: 6px;
  color: #d8f7ee;
}
.knowledge-base a, .video-tutorials a {
  color: #2af5b6;
  text-decoration: underline;
  transition: color .18s;
}
.knowledge-base a:hover, .video-tutorials a:hover {
  color: #00ffc2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 15px;
}
.contact-info p {
  display: flex;
  align-items: center;
  color: #d8eafd;
  font-size: 1.03rem;
}
.contact-info img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.text-section {
  background: #232c3b;
  border-radius: 10px;
  padding: 19px 19px;
  margin-bottom: 18px;
  box-shadow: 0 3px 16px 0 #2af5b61a;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #18202a;
  color: #F3FAFE;
  z-index: 1100;
  box-shadow: 0 -2px 20px 0 #1B8B6A22;
  padding: 18px 24px 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  animation: bannerSlideIn .5s cubic-bezier(0.45,0,0.3,1);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%) scale(0.97); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
#cookie-banner p {
  flex: 6 1 250px;
  margin-bottom: 0;
  font-size: 1.04rem;
  color: #F3FAFE;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
#cookie-banner button,
#cookie-banner .cookie-settings-btn {
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .19s;
}
#cookie-banner .cookie-accept {
  background: var(--neon);
  color: #0a2232;
  box-shadow: 0 2px 12px 0 #2af5b619;
}
#cookie-banner .cookie-accept:hover {
  background: #00ffc2;
  color: #043b2f;
  box-shadow: 0 4px 18px 0 #2af5b62d;
}
#cookie-banner .cookie-reject {
  background: #283d59;
  color: #F3FAFE;
}
#cookie-banner .cookie-reject:hover {
  background: #dc445c;
  color: #fff;
}
#cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--neon);
  border: 1.3px solid var(--neon);
}
#cookie-banner .cookie-settings-btn:hover {
  background: #2af5b629;
  color: var(--neon);
}

#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  max-width: 98vw;
  width: 410px;
  background: #101927;
  color: #F3FAFE;
  box-shadow: 0 8px 44px 0 #234E70be, 0 0 0 999vw rgba(0,0,0,0.57);
  border-radius: 14px;
  z-index: 1300;
  transform: translate(-50%, -50%) scale(1);
  animation: cookieModal .3s cubic-bezier(0.5,0,0.2,1);
  display: none;
}
#cookie-modal.open {
  display: block;
}
@keyframes cookieModal {
  from { opacity:0; transform: translate(-50%,-70%) scale(0.98); }
  to   { opacity:1; transform: translate(-50%,-50%) scale(1); }
}
#cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px 10px 22px;
  border-bottom: 1px solid #263352;
}
#cookie-modal .modal-header h3 {
  margin: 0;
  font-size: 1.09rem;
}
#cookie-modal .modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 7px 0 9px;
  transition: color .15s;
}
#cookie-modal .modal-close:hover {
  color: var(--neon);
}
#cookie-modal .modal-body {
  padding: 22px 22px 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--neon);
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #aef5e4;
  font-weight: 500;
}
.cookie-category .essential {
  color: #fff;
  font-weight: 700;
}
#cookie-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  padding: 8px 16px 18px 16px;
}
#cookie-modal .cookie-save, #cookie-modal .cookie-cancel {
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 1.01rem;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background .16s, color .16s;
}
#cookie-modal .cookie-save {
  background: var(--neon);
  color: #033535;
}
#cookie-modal .cookie-save:hover {
  background: #00ffc2;
}
#cookie-modal .cookie-cancel {
  background: #283d59;
  color: #fff;
}
#cookie-modal .cookie-cancel:hover {
  background: #dc445c;
  color: #fff;
}

/* MEDIA QUERIES - MOBILE FIRST */
@media (max-width: 1112px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .feature-grid,
  .pricing-table,
  .faq-list,
  .content-grid,
  .blog-list,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .pricing-table > div,
  .blog-list > div,
  .faq-list > div, .card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding-bottom: 30px;
  }
  .footer-links { gap: 10px; }
  footer .container {
    flex-direction: column;
    gap: 13px;
    padding: 24px 8px;
    align-items: flex-start;
  }
  .testimonial-card { padding: 16px 11px; min-width: 0; }
  #cookie-banner { flex-direction: column; gap: 14px; padding: 15px 5px 14px 6px; }
}
@media (max-width: 500px) {
  .content-wrapper, .container { padding-left: 0; padding-right: 0; }
  header .container { height: 58px; padding-left: 6px; padding-right: 6px; }
  .hero h1 { font-size: 1.42rem; }
  h2 { font-size: 1.2rem; }
  .cta .content-wrapper { padding-left: 0; padding-right: 0; }
}
@media (max-width: 440px) {
  .feature-grid > div,
  .pricing-table > div,
  .blog-list > div,
  .faq-list > div, .card {
    padding: 15px 5px 13px 11px;
  }
  .testimonial-card { font-size: .97rem; padding: 9px 4px; }
  #cookie-modal { min-width: 95vw; width: 97vw; border-radius: 7px; }
}

/* ANIMATIONS */
.section, .card, .testimonial-card, .feature-grid > div, .pricing-table > div, .blog-post-preview {
  transition: box-shadow .21s, border-color .17s, background .18s, transform .15s;
}
.cta-primary, .main-nav a.cta-primary, .newsletter-form button { transition: background .19s, color .18s, box-shadow .17s; }

/* ACCENTS (NEON) */
.neon-glow {
  color: var(--neon);
  text-shadow: 0 0 7px #2af5b6cc, 0 2px 28px #2af5b62b;
}

/* Hide visually but keep accessible */
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Accessibility: Focus outline */
a:focus, button:focus, input:focus, [tabindex]:focus {
  outline: 2.5px solid #2af5b6;
  outline-offset: 3px;
  z-index: 10;
}

/* UTILITY */
.mt-0 { margin-top: 0px !important; }
.mb-0 { margin-bottom: 0px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-24 { gap: 24px !important; }
.bg-accent { background: var(--accent); color: #00384e !important; }
.text-neon { color: var(--neon); }

/* Hide elements */
[hidden] { display:none !important; }
