/* === 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #181A1B;
  background: #F5F7FA;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}

/* --- Brand Colors & Typography --- */
:root {
  --primary: #21408E;
  --secondary: #22B573;
  --accent: #F5F7FA;
  --text-dark: #181A1B;
  --text-light: #fff;
  --heading-font: 'Montserrat', 'Arial Rounded MT Bold', sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow: 0 4px 20px 0 rgba(33,64,142,.07), 0 1.5px 6px 0 rgba(34,181,115,0.10);
  --card-radius: 22px;
  --brand-gradient: linear-gradient(90deg, #21408E 0%, #22B573 100%);
  --card-bg: #fff;
  --creative-red: #F86E7B;
  --creative-yellow: #F9D923;
  --creative-violet: #7843E6;
}

/* === Layout Containers === */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 270px;
}

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

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #23253b;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(120,67,230,.07), 0 1.5px 8px 0 rgba(248,110,123,0.07);
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.18s;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.015) rotate(-1deg);
  box-shadow: 0 8px 40px 0 rgba(120,67,230,.10), 0 2.5px 12px 0 rgba(33,64,142,0.08);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px 32px 21px 14px;
  box-shadow: 0 4px 16px 0 rgba(33,64,142,0.08), 0 0.5px 3px 0 rgba(249,217,35, 0.11);
  padding: 24px 18px 22px 18px;
  max-width: 340px;
  margin-bottom: 20px;
  border-left: 4px solid var(--creative-violet);
  transition: border-color .20s;
}

.feature-item:hover {
  border-left: 8px solid var(--secondary);
  box-shadow: 0 10px 32px 0 rgba(34,181,115,0.14), 0 3px 18px 0 rgba(248,110,123,0.04);
}

.feature-grid, .gadget-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  justify-content: flex-start;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.19;
}
h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.3em;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--creative-violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}
h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.8em;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--creative-red));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.24em;
}
h4 {
  font-size: 1.12rem;
  font-weight: 500;
}
p, li, address, blockquote, cite {
  font-family: var(--body-font);
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
}
blockquote {
  font-family: var(--heading-font);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--primary);
  margin: 0 12px 0 0;
  text-shadow: 0 2px 6px rgba(34,64,142,0.08);
  border-left: 4px solid var(--creative-red);
  padding-left: 12px;
}
cite {
  font-family: var(--body-font);
  color: var(--creative-violet);
  font-style: normal;
  font-weight: 600;
  font-size: 1.02rem;
  margin-left: 0.6em;
}
strong {
  color: var(--primary);
  font-weight: bold;
  font-family: var(--heading-font);
}

/* --- Button Styles --- */
.cta-btn {
  display: inline-block;
  font-family: var(--heading-font);
  background: linear-gradient(91deg, #21408E 15%, #22B573 85%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 38px;
  box-shadow: 0 2px 12px 0 rgba(33,64,142,0.13);
  transition: box-shadow .18s, transform .18s, background .2s;
  letter-spacing: .06em;
  margin-top: 10px;
  cursor: pointer;
  text-align: center;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(89deg, #22B573 30%, #21408E 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 30px 0 rgba(248,110,123,0.15), 0 3px 8px 0 rgba(33,64,142,0.11);
  outline: none;
}

/* --- Header & Navigation --- */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(33,64,142,0.04);
  padding: 0 0 6px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.025rem;
  padding: 7px 2px;
  border-bottom: 2.5px solid transparent;
  transition: border-color .18s, color .19s;
  letter-spacing: .02em;
}
.main-nav a:hover,.main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.9rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 6px 11px 7px 11px;
  border-radius: 50%;
  margin-left: 6px;
  transition: background .14s;
  position: relative;
  z-index: 1022;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(34,181,115,0.13);
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,64,142,0.95);
  z-index: 2000;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .37s cubic-bezier(.4,0,.2,1), opacity .19s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 16px 26px 10px 0px;
  cursor: pointer;
  align-self: flex-end;
  margin: 11px 20px 13px 0;
  position: relative;
  z-index: 2001;
  transition: color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--creative-red);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  gap: 20px;
  width: 96%;
  margin-left: 17px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 22px 12px 10px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--text-dark);
}

/* Hide main nav/show mobile burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(101deg, #F5F7FA 60%, #F9D923 98%);
  border-bottom-left-radius: 85px 33px;
  border-bottom-right-radius: 80px 23px;
  box-shadow: 0 8px 30px 0 rgba(249,217,35,0.11), 0 4px 18px 0 rgba(33,64,142,0.07);
  margin-bottom: 48px;
  padding: 80px 0 80px 0;
}
.hero .content-wrapper {
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.17rem;
  color: #333;
  margin-bottom: 15px;
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 16px;
  background: linear-gradient(97deg, var(--creative-violet) 62%, var(--secondary) 100%);
  border-radius: 41px 19px 22px 48px;
  box-shadow: 0 8px 24px 0 rgba(120,67,230,0.12);
  color: #fff;
}
.cta h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: initial;
  margin-bottom: 19px;
}
.cta .cta-btn {
  background: linear-gradient(98deg, #fff 86%, var(--primary) 98%);
  color: var(--primary);
  font-weight: bold;
  box-shadow: 0 1.5px 14px 0 rgba(249,217,35, 0.17);
  border-radius: 48px 24px 42px 32px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: linear-gradient(90deg, var(--creative-red) 65%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 6px 34px 0 rgba(34,181,115,0.14), 0 3px 9px 0 rgba(248,110,123,0.17);
}

/* --- Features Section --- */
.features {
  background: #fff;
  margin-bottom: 66px;
  border-radius: 29px 11px 48px 17px;
  box-shadow: 0 3px 18px 0 rgba(33,64,142,0.06);
  padding: 42px 0;
}
.features .feature-grid {
  margin-top: 23px;
}

/* --- Services/Gadgets/Steps/Case Studies --- */
.services-list, .gadget-list, .steps-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  margin-top: 17px;
}
.services-list li, .gadget-list li {
  background: #fff;
  border-radius: 21px 17px 12px 42px;
  box-shadow: 0 4px 22px 0 rgba(34,181,115,0.11), 0 3px 18px 0 rgba(248,110,123,0.04);
  padding: 24px 20px 22px 23px;
  flex: 1 1 310px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 5px solid var(--creative-yellow);
}
.services-list li:hover, .gadget-list li:hover {
  box-shadow: 0 16px 36px 0 rgba(33,64,142,0.15);
  transform: translateY(-3px) rotate(-0.5deg) scale(1.03);
  border-left: 8px solid var(--secondary);
}
.services-list h2, .gadget-list h3 {
  margin: 0 0 7px 0;
  font-size: 1.17rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--primary) 60%, var(--creative-red) 100%);
  background-clip: text; -webkit-background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.services-list img, .gadget-list img, .feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}

/* Steps list artistic numbers */
.steps-list li {
  position: relative;
  background: #fff6e9;
  border-radius: 17px 12px 22px 13px;
  box-shadow: 0 2px 8px 0 rgba(249,217,35,0.05);
  margin-bottom: 15px;
  padding: 19px 18px 19px 52px;
  font-family: var(--body-font);
  font-size: 1rem;
}
.steps-list li strong {
  color: var(--creative-red);
  font-size: 1.07rem;
  font-family: var(--heading-font);
}

.steps-list li:before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 18px; top: 18px;
  font-weight: bold;
  font-family: var(--heading-font);
  color: var(--creative-yellow);
  font-size: 1.3rem;
  background: var(--primary);
  border-radius: 50%;
  width: 28px; height: 28px;
  text-align: center;
  line-height: 28px;
  box-shadow: 0 1.5px 6px 0 rgba(249,217,35,0.09);
}
.steps-list {
  counter-reset: step;
  flex-direction: column;
}

/* Case Studies */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.case-study {
  background: #fff;
  border-radius: 18px 24px 22px 15px;
  box-shadow: 0 5px 16px 0 rgba(33,64,142,0.08);
  padding: 22px 18px 17px 18px;
  flex: 1 1 285px;
  margin-bottom: 24px;
  border-left: 5px solid var(--secondary);
  transition: border-color .18s;
}
.case-study:hover {
  border-left: 8px solid var(--creative-violet);
  box-shadow: 0 13px 42px 0 rgba(120,67,230,0.09);
}
.results-stat {
  font-weight: 600;
  color: var(--primary);
  margin-top: 6px;
}

/* --- Pricing Table --- */
table {
  width: 100%;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(249,217,35,0.07);
  border-spacing: 0;
  margin: 18px 0 24px 0;
  overflow: hidden;
  font-family: var(--body-font);
}
thead {
  background: var(--accent);
}
th, td {
  padding: 13px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
th {
  color: var(--primary);
  font-weight: bold;
  background: var(--accent);
  font-size: 1.05rem;
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: #f9fafe;
}

/* --- Text Section (General) --- */
.text-section {
  margin: 15px 0 20px 0;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.66;
  color: #23253b;
}
.text-section ul {
  margin-top: 12px;
  margin-bottom: 5px;
  padding-left: 17px;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 8px;
  padding-left: 4px;
}
.text-section strong {
  color: var(--creative-violet);
}

.address {
  font-style: normal;
  color: #21408E;
}

/* --- Legal Pages --- */
.legal {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 64px;
  padding: 40px 22px 42px 22px;
}
.legal h1, .legal h2 {
  margin-bottom: 12px;
}

/* --- Contact Page --- */
.contact-form .content-wrapper, .information .content-wrapper {
  gap: 10px;
  align-items: flex-start;
}
.contact-form .text-section, .information address {
  font-size: 1.08rem;
}

/* --- Confirmation Page --- */
.confirmation {
  background: #fff;
  border-radius: 18px 39px 22px 11px;
  padding: 48px 19px 42px 19px;
  margin-bottom: 64px;
  box-shadow: 0 8px 34px 0 rgba(120,67,230,0.07);
  text-align: center;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/* --- Footer --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 44px 0 23px 0;
  border-top-left-radius: 77px 28px;
  box-shadow: 0 2px 19px 0 rgba(34,181,115,0.06);
  margin-top: 56px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .legal-links a:hover {
  color: var(--creative-yellow);
}
.contact-info, .legal-links {
  font-size: 0.99rem;
  color: #c2d4fc;
  margin-bottom: 11px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-links a {
  color: #b1decd;
  font-size: 0.97rem;
  font-family: var(--body-font);
  transition: color .13s;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #23253b;
  color: #fff;
  padding: 19px 12px 22px 12px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--body-font);
  box-shadow: 0 -4px 22px 0 rgba(33,64,142,0.13);
  border-top-left-radius: 26px 15px;
  border-top-right-radius: 24px 30px;
  opacity: 1;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .17s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 17px;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: var(--heading-font);
  font-size: 1rem;
  padding: 9px 17px;
  border: none;
  border-radius: 36px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 rgba(120,67,230,.09);
  transition: background .17s, color .15s, transform .13s;
}
.cookie-banner .accept-btn {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
}
.cookie-banner .accept-btn:hover {
  background: var(--primary);
  color: #fffad6;
  transform: scale(1.03);
}
.cookie-banner .reject-btn {
  background: #fff8dc;
  color: var(--primary);
}
.cookie-banner .reject-btn:hover {
  background: var(--creative-red);
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .settings-btn {
  background: transparent;
  border: 2px solid var(--creative-yellow);
  color: var(--creative-yellow);
}
.cookie-banner .settings-btn:hover {
  background: var(--creative-yellow);
  color: var(--primary);
}

/* --- Cookie Settings Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2110;
  background: rgba(25,27,44,0.86);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .20s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #222;
  border-radius: 18px 42px 21px 14px;
  box-shadow: 0 8px 32px 0 rgba(248,110,123,0.16);
  padding: 37px 30px 30px 34px;
  min-width: 314px;
  max-width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.31rem;
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 4px;
  background: none;
  -webkit-text-fill-color: initial;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px; right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  transition: color .12s;
  z-index: 2;
}
.cookie-modal .modal-close:hover {
  color: var(--creative-red);
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal .modal-category label {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal .modal-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 21px;
  height: 21px;
  border-radius: 4px;
  outline: 2px solid var(--secondary);
}
.cookie-modal .modal-category.disabled label {
  color: #bbb;
  opacity: 0.72;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 17px;
}
.cookie-modal .modal-btns button {
  font-family: var(--heading-font);
  font-size: 1rem;
  border-radius: 36px;
  padding: 10px 19px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background .13s, color .14s;
  background: var(--creative-yellow);
  color: var(--primary);
}
.cookie-modal .modal-btns button:hover {
  background: var(--secondary);
  color: #fff;
}

/* --- Forms & Inputs --- */
input, textarea, select {
  font-family: var(--body-font);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid #e5e5e5;
  outline: none;
  font-size: 1.06rem;
  margin-bottom: 13px;
  background: #fff;
  transition: border-color .12s, box-shadow .13s;
  box-shadow: none;
  min-width: 0;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(34,181,115,0.07);
}
label {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
}

/* --- Artistic/Creative Details --- */
/* Colorful accent edge for artistic flair on cards (via border or background fragment) - done above */
/* Add playful border radii, shadows, or shapes directly on cards, feature-items as shown */
/* Artistic fonts in headings - done */

/* --- Responsive Queries --- */
@media (max-width: 992px) {
  .container {
    width: 98%;
    max-width: 98%;
    padding: 0 5px;
  }
  .hero {
    padding-top: 50px;
    padding-bottom: 38px;
    border-bottom-left-radius: 44px 13px;
    border-bottom-right-radius: 37px 11px;
  }
  .features, .cta, .section {
    border-radius: 16px 10px 20px 14px;
    padding: 22px 7px 22px 7px;
  }
  .footer-nav, .legal-links {
    gap: 9px;
  }
  footer .container {
    gap: 24px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 19px;
  }
  .main-nav {
    display: none;
  }
  .hero {
    padding-top: 29px;
    padding-bottom: 26px;
  }
  .section, .features, .cta {
    padding: 22px 6px 18px 6px;
    margin-bottom: 39px;
  }
  .hero .content-wrapper, .features .content-wrapper, .cta .content-wrapper {
    align-items: flex-start;
  }
  .feature-grid, .gadget-list, .services-list, .case-study-list {
    flex-direction: column;
    gap: 13px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .card-container { flex-direction: column; }
  .content-grid { flex-direction: column; gap: 14px; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6px 19px 13px;
  }
  .contact-info, .legal-links {
    font-size: .93rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  .cta-btn, .cookie-banner button, .cookie-modal .modal-btns button {
    font-size: 1.01rem;
    padding: 8px 15px;
  }
}

/* --- Transitions, Micro-Interactions, Modern Details --- */
*:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
img, svg {
  max-width: 100%;
  display: block;
}
a, button { cursor: pointer; }

/* --- Utility Classes --- */
.mt-1    { margin-top: 8px  !important; }
.mt-2    { margin-top: 16px !important; }
.mt-3    { margin-top: 24px !important; }
.mb-1    { margin-bottom: 8px  !important; }
.mb-2    { margin-bottom: 16px !important; }
.mb-3    { margin-bottom: 24px !important; }
.gap-1   { gap: 8px;  }
.gap-2   { gap: 16px; }
.gap-3   { gap: 24px; }
.text-center { text-align: center; }

/* --- Hide on mobile helper --- */
@media (max-width: 576px) {
  .hide-mobile { display: none !important; }
}

/* --- END OF STYLE.CSS --- */