/* ===== 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section { display: block; }
body {
  line-height: 1.5;
  background: #F9FAFC;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
strong { font-weight: bold; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* ===== BRAND COLORS & DESIGN TOKENS ===== */
:root {
  --color-primary: #2D3E50;
  --color-secondary: #6FA37A;
  --color-accent: #F2E8D5;
  --color-bg: #F9FAFC;
  --color-electric: #FF4E00;
  --color-yellow: #FFD600;
  --color-magenta: #F84577;
  --color-cyan: #01C9F5;
  --color-success: #6FA37A;
  --color-focus: #FFAA00;
  --color-white: #fff;
  --color-dark: #1B2533;
  --shadow-card: 0 6px 24px 0 rgba(45,62,80,0.12), 0 1.5px 5px 0 rgba(31,31,31,0.07);
  --shadow-hover: 0 10px 32px 0 rgba(255,78,0,0.11), 0 6px 20px 0 rgba(45,62,80,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition-main: all 0.18s cubic-bezier(.78,.13,.15,.86);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
.hero,
.features,
.about,
.services,
.services-overview,
.contact,
.contact-info-block,
.project-highlights,
.blog-features,
.testimonials,
.cta,
.privacy-policy,
.gdpr-policy,
.terms-conditions,
.cookie-policy,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .about,
  .services,
  .services-overview,
  .contact,
  .contact-info-block,
  .project-highlights,
  .blog-features,
  .testimonials,
  .cta,
  .privacy-policy,
  .gdpr-policy,
  .terms-conditions,
  .cookie-policy,
  .thank-you {
    margin-bottom: 36px;
    padding: 28px 8px 36px 8px;
    border-radius: var(--radius-sm);
  }
  .container { padding: 0 8px; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  color: var(--color-electric);
  letter-spacing: -1.2px;
  line-height: 112%;
}
h2 {
  font-size: 2rem;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
  line-height: 120%;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 1rem; }
h6 { font-size: 0.92rem; }
p, ul, li {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.7em;
}
p {
  font-weight: 400;
  line-height: 1.65;
}
blockquote {
  font-size: 1.06rem;
  font-style: italic;
  color: var(--color-magenta);
  padding: 0.7em 1.25em;
  background: var(--color-accent);
  border-left: 4px solid var(--color-electric);
  border-radius: var(--radius-sm);
  margin: 0.7em 0;
}
ul, ol {
  margin-left: 1em;
  margin-bottom: 0.9em;
}
ul li, ol li {
  margin-bottom: 0.35em;
  position: relative;
  padding-left: 1.1em;
}
ul li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-yellow);
  border-radius: 100%;
  margin-right: 8px;
  position: absolute;
  left: 0; top: 8px;
}

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

/* ===== HEADER & NAV ===== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 5px 24px -10px rgba(45,62,80,0.10);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  height: 76px;
}
.logo img { height: 42px; max-width: 160px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-yellow);
}
.cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.09rem;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--color-electric);
  color: var(--color-white);
  letter-spacing: 1.5px;
  box-shadow: 0 3px 14px 0 rgba(255,78,0,0.09);
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  text-transform: uppercase;
  transition: var(--transition-main);
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  box-shadow: 0 6px 16px 0 rgba(255,78,0,0.18);
  background: var(--color-magenta);
  color: var(--color-yellow);
}
button.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--color-yellow);
  background: transparent;
  cursor: pointer;
  margin-left: 16px;
  line-height: 0.8;
  border-radius: 8px;
  border: 2px solid transparent;
  width: 44px; height: 44px;
  outline: none;
  z-index: 101;
  transition: border 0.11s, background 0.15s;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: rgba(255,214,0,0.10);
  border: 2px solid var(--color-yellow);
}

@media (max-width: 1025px) {
  header .container {
    padding: 0 8px;
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .cta-primary { margin-left: 12px; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(45,62,80,0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(.8,-0.01,.23,1);
  box-shadow: 0 14px 42px 0 rgba(45,62,80,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--color-yellow);
  background: transparent;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 18px;
  margin-top: 12px;
  transition: color 0.12s;
  z-index: 1200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-electric);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 0;
  width: 90%;
  text-align: left;
  letter-spacing: 1.2px;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-magenta);
  color: var(--color-yellow);
}

@media (max-width: 1025px) {
  .main-nav, .cta-primary {
    display: none !important;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1026px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(100deg, var(--color-electric), var(--color-yellow) 80%);
  color: var(--color-white);
  box-shadow: 0 8px 32px 0 rgba(45,62,80,0.11);
  border-radius: var(--radius);
  margin-bottom: 44px;
  padding-top: 58px;
  padding-bottom: 58px;
  text-align: left;
}
.hero h1, .hero p {
  color: var(--color-white);
}
.hero .cta-primary {
  background: var(--color-yellow);
  color: var(--color-electric);
  box-shadow: none;
  margin-top: 18px;
}
.hero .cta-primary:hover, .hero .cta-primary:focus {
  background: var(--color-white);
  color: var(--color-magenta);
}

@media (max-width: 768px) {
  .hero { padding-top: 32px; padding-bottom: 34px; }
}

/* ===== FEATURE (ICONS) GRID ===== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  flex: 1 1 260px;
  max-width: 31%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.02);
  background: var(--color-yellow);
}
.feature img {
  height: 54px;
  margin-bottom: 18px;
}
.feature h3 {
  color: var(--color-electric);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--color-primary);
  font-size: 0.99rem;
}

@media (max-width: 1025px) {
  .features .feature-grid { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .feature { max-width: 47%; }
}
@media (max-width: 768px) {
  .features .feature-grid { flex-direction: column; gap: 16px; }
  .feature { max-width: 100%; min-width: 0; }
}

/* ===== CARD CONTAINERS & CONTENT GRID ===== */
.card-container, .card-grid, .blog-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  align-items: stretch;
  justify-content: space-between;
}
.card {
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .card-container, .card-grid, .content-grid, .service-list, .blog-list { flex-direction: column; gap: 16px; }
  .card, .service-item, .blog-teaser { min-width: 0; max-width: 100%; }
}

/* ===== SERVICE AND BLOG CARDS ===== */
.service-item, .blog-teaser {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.service-item:hover, .blog-teaser:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.01);
  background: var(--color-cyan);
}
.service-item h3 > span {
  color: var(--color-secondary);
  font-size: 0.93em;
  font-weight: 400;
  margin-left: 5px;
}

/* ===== TEXT & IMAGE SECTIONS, TEXT BLOCKS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-accent);
  box-shadow: 0 4px 26px -10px var(--color-electric);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--color-white);
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1.5px 8px 0 rgba(45,62,80,.09);
  border-left: 5px solid var(--color-electric);
  transition: box-shadow 0.13s, transform 0.13s;
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 7px 18px 0 rgba(255,78,0,0.11);
  border-left-color: var(--color-magenta);
  transform: translateY(-3px);
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.02rem;
}
.testimonial-card strong { color: var(--color-electric); font-size: 0.97rem; }
.star-rating {
  color: var(--color-yellow);
  font-size: 1.26rem;
  letter-spacing: 0.12em;
}

/* ===== CONTACT SECTION, ICON LISTS ===== */
.contact-info-block ul img, .contact ul img {
  vertical-align: middle;
  margin-right: 10px;
  height: 22px;
  width: auto;
}
.contact-info-block ul li, .contact ul li {
  margin-bottom: 0.88em;
  font-size: 1.03rem;
  padding-left: 0;
  list-style: none;
  color: var(--color-primary);
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  padding: 36px 0 20px 0;
  color: var(--color-accent);
  box-shadow: 0 -6px 24px -12px rgba(45,62,80,0.08);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.97rem;
  letter-spacing: 0.8px;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-yellow);
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  color: var(--color-accent);
}
footer img {
  height: 36px;
  display: block;
  margin: 10px auto;
  filter: drop-shadow(0 2px 8px #2222);
}
@media (max-width: 768px) {
  .footer-nav { gap: 10px; font-size: 0.94rem; }
  footer img { height: 28px; }
  footer .container { gap: 14px; }
}

/* ===== CTA & ANIMATION EFFECTS ===== */
.cta { text-align: center; background: var(--color-cyan); }
.cta .cta-primary {
  margin-top: 16px;
  background: var(--color-electric);
  color: var(--color-white);
}
.cta .cta-primary:hover {
  background: var(--color-yellow);
  color: var(--color-electric);
}

/* ===== BUTTONS, FOCUS STATE ===== */
button, .cta-primary, .footer-nav a, .main-nav a, .mobile-nav a {
  outline: none;
  transition: box-shadow 0.18s, border 0.13s, background 0.13s, color 0.13s;
}
button:focus, .cta-primary:focus, .footer-nav a:focus, .main-nav a:focus, .mobile-nav a:focus {
  border: 2px solid var(--color-focus);
  box-shadow: 0 0 0 3px rgba(255,170,0,0.38);
}

/* ===== LEGAL & POLICY PAGES ===== */
.legal-text h2, .legal-text h3 { margin-top: 28px; }
.legal-text ul { margin-bottom: 1.2em; }
.legal-text li { font-size: 1rem; color: var(--color-dark); margin-bottom: 0.5em; }

/* ===== THANK YOU SECTION ===== */
.thank-you h1 { color: var(--color-success); }
.thank-you a.cta-primary {
  margin-top: 20px;
  background: var(--color-secondary);
  color: var(--color-white);
}
.thank-you a.cta-primary:hover { background: var(--color-yellow); color: var(--color-magenta); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--color-electric);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 18px 0 rgba(45,62,80,.09);
  animation: slideUp 0.55s cubic-bezier(.87,.21,.13,.98) 1;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2;
  font-size: 1.01rem;
  color: var(--color-white);
}
.cookie-banner .cookie-btns {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn, .cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 32px;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, box-shadow 0.12s;
}
.cookie-btn.accept {
  background: var(--color-yellow);
  color: var(--color-electric);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-white);
  color: var(--color-electric);
}
.cookie-btn.reject {
  background: var(--color-magenta);
  color: var(--color-white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-yellow);
  color: var(--color-magenta);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 17px 5px 14px 5px; }
  .cookie-banner p { font-size: 0.96rem; }
  .cookie-banner .cookie-btns { width: 100%; justify-content: flex-start; gap: 10px; }
}

/* ===== COOKIE CONSENT MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(45,62,80,0.86);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.27s cubic-bezier(.76,.28,.17,.95) 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  max-width: 410px;
  width: 90%;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 10200;
  animation: popIn 0.39s cubic-bezier(.78,.13,.38,.97) 1;
}
@keyframes popIn {
  from { transform: scale(0.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 8px;
  color: var(--color-electric);
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-pref-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}
.cookie-pref-item .label {
  flex: 1;
  font-family: var(--font-body);
  color: var(--color-dark);
  font-weight: 700;
}
.cookie-pref-item .toggle {
  height: 22px; width: 44px;
  position: relative;
  background: var(--color-secondary);
  border-radius: 111px;
  transition: background 0.13s;
  cursor: pointer;
  display: flex; align-items: center;
}
.cookie-pref-item .toggle input[type=checkbox] {
  display: none;
}
.cookie-pref-item .toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  height: 18px; width: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: left 0.13s, background 0.13s;
  box-shadow: 0 1.5px 6px rgba(45,62,80,.09);
}
.cookie-pref-item .toggle input:checked + .slider {
  left: 24px; background: var(--color-yellow);
}
.cookie-pref-item .toggle[disabled], .cookie-pref-item .toggle.disabled {
  opacity: 0.6; pointer-events: none;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.5rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-cookie-modal:hover { color: var(--color-magenta); }

/* ===== RESPONSIVE FLEX LAYOUTS ===== */
@media (max-width: 768px) {
  .features .feature-grid, .service-list, .blog-list, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== UTILITIES ===== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* ===== SCROLLBAR DESIGN ===== */
::-webkit-scrollbar { width: 10px; background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 16px; }
::-webkit-scrollbar-track { background: var(--color-bg); }

/* ===== MICRO-ANIMATION: Scroll Fade ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeIn 0.8s linear both; }
}

/* ===== FORM (if ever present) ===== */
input, textarea, select {
  background: var(--color-accent);
  border: 1.5px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 18px;
  transition: border 0.12s;
}
input:focus, textarea:focus {
  border: 2px solid var(--color-electric);
}

/* ===== ARIA/VISUAL HELPERS ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===== NO GRID! All layout uses FLEX ONLY ===== */
/* All layout patterns use flexbox as above. No CSS grid/columns used anywhere. */
