/* RESET & BASE STYLES */
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;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A2233;
  background: #fff;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A2233;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CBD43B;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111112;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1A2233;
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: #1A2233;
}

/* CONTAINERS & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(20, 20, 28, 0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(20,20,28,0.07);
  padding: 28px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(25,32,51,0.15);
  transform: translateY(-4px) scale(1.01);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20,20,28,0.05);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(20,20,28,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20,20,28,0.06);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 4px 16px rgba(42, 42, 44, 0.16);
  transform: scale(1.015);
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.idea-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.project-descriptions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.client-results, .project-highlights, .tips-list {
  margin-top: 18px;
}
.question-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.answers {
  margin-top: 24px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px 32px;
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero, .features, .services, .testimonials, .faq, .legal, .contact, .about, .thank-you {
    padding: 28px 6px;
  }
  .container {
    padding: 0 8px;
  }
  .feature-grid, .card-container, .idea-cards, .contact-details {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .section, section {
    padding: 24px 8px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  body { font-size: 15px; }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 2px 12px rgba(25,34,51,0.03);
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  color: #1A2233;
  padding: 0 7px;
  border-radius: 3px;
  transition: color 0.17s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #CBD43B;
  background: #F2F2F2;
}
header img {
  height: 36px;
  width: auto;
  margin-right: 18px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8em 2.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  transition: background 0.16s, color 0.23s, box-shadow 0.17s, transform 0.14s;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(25, 34, 51, 0.05);
  min-width: 48px;
}
.btn-primary {
  background: #1A2233;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #CBD43B;
  color: #181818;
  transform: translateY(-2px) scale(1.033);
}
.btn-secondary {
  background: transparent;
  color: #1A2233;
  border: 2px solid #1A2233;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1A2233;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #1A2233;
  cursor: pointer;
  z-index: 1111;
  margin-left: 16px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2F2F2;
}

@media (max-width: 1024px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,29,30,0.92);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.41,1.01,.59,1);
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 4px 50px 20px rgba(16,18,21,0.14);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: transparent;
  border: none;
  margin: 26px 30px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2005;
  padding: 2px 8px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #CBD43B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  margin: 12px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  padding: 12px 8px;
  margin-bottom: 6px;
  border-radius: 4px;
  width: calc(100vw - 54px);
  display: block;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #CBD43B;
  color: #1A2233;
}
@media (max-width: 450px) {
  .mobile-nav a { font-size: 1.13rem; padding: 10px 4px; }
}

/* HERO & SPECIAL SECTIONS */
.hero {
  background: #f9f9fa;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 26px 0 rgba(20, 20, 28, 0.05);
  text-align: left;
  min-height: 310px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 56px 20px 44px 20px;
}
.hero h1 {
  color: #1A2233;
  font-size: 2.8rem;
  margin-bottom: 14px;
  letter-spacing: -1px;
  text-shadow: 0 1px 4px #fff, 0 2px 16px #F2F2F2;
}
.hero p {
  font-size: 1.19rem;
  color: #262626;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 8px 24px 8px;
    min-height: 180px;
  }
  .hero h1 { font-size: 1.45rem; }
}

/* LISTS, LINKS, & UTILITY */
ul, ol {
  margin-bottom: 18px;
  margin-top: 2px;
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 6px;
  padding-left: 0.5em;
  line-height: 1.6;
  position: relative;
  color: #232323;
}
ul li::before {
  content: '\2022';
  color: #CBD43B;
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 1rem;
  line-height: 1;
}

footer {
  background: #1A2233;
  color: #F2F2F2;
  padding: 40px 0 20px 0;
  margin-top: 40px;
  border-radius: 20px 20px 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 44px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: #F2F2F2;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #CBD43B;
}
.social-media {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.social-media a img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) contrast(1.03);
  transition: filter 0.14s;
}
.social-media a:hover img {
  filter: grayscale(0%) brightness(1.11) contrast(1.15);
}
.copyright {
  font-size: 0.95rem;
  color: #DDD;
  margin-top: 16px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  footer .container { padding: 0 6px; }
  .footer-links, .social-media { gap: 10px; }
}

/* LEGAL SECTIONS / PRIVACY / COOKIES */
.privacy_policy_text, .cookies_policy_text, .rodo_information, .terms_and_conditions {
  padding: 2px 2px 2px 0;
  color: #191B1D;
  font-size: 1.01rem;
  background: #fff;
  border-radius: 8px;
}
.privacy_policy_text ul, .cookies_policy_text ul, .rodo_information ul, .terms_and_conditions ul, .terms_and_conditions ol {
  margin-bottom: 18px;
  margin-top: 3px;
}
.terms_and_conditions li {
  margin-bottom: 16px;
}
.privacy_policy_text a, .cookies_policy_text a, .rodo_information a, .terms_and_conditions a {
  color: #CBD43B;
  text-decoration: underline;
  font-size: 1em;
}

/* CARDS, TIPS, & HELPER CLASSES */
.text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(20,20,28,0.05);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
}
.text-section:last-child {
  margin-bottom: 0;
}

/* THANK YOU PAGE */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
}

/* ANIMATIONS */
@keyframes slideUpCookie {
  0% { transform: translateY(120%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

/* COOKIE CONSENT: BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #18181C;
  color: #F2F2F2;
  z-index: 4000;
  width: 100vw;
  box-shadow: 0 -3px 28px rgba(34,34,44,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 30px 20px 30px;
  font-size: 1rem;
  border-radius: 19px 19px 0 0;
  animation: slideUpCookie 0.6s cubic-bezier(.46,1.04,.52,1.12) 1;
}
.cookie-banner p {
  color: #F2F2F2;
  margin: 0 0 6px 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: #fff;
  color: #1A2233;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 26px;
  border-radius: 6px;
  margin: 0;
  border: none;
  font-weight: 600;
  box-shadow: 0 1px 5px 0 rgba(20, 20, 28, 0.05);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cookie-btn.cookie-accept {
  background: #CBD43B;
  color: #1A2233;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #1A2233;
  color: #CBD43B;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #CBD43B;
  border: 2px solid #CBD43B;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #CBD43B;
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #1A2233;
  color: #fff;
  border: 2px solid #24242C;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #232323;
  color: #CBD43B;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 7px 12px 7px;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-btns { gap: 12px; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,28,0.86);
  z-index: 4099;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #1A2233;
  padding: 36px 26px 28px 26px;
  border-radius: 13px;
  max-width: 430px;
  width: 93vw;
  box-shadow: 0 7px 44px rgba(28,35,40,0.15);
  animation: slideUpCookie 0.32s cubic-bezier(.47,1.1,.53,1.1) 1;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category strong {
  font-size: 1.03rem;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 14px;
  background: #eaeaea;
  position: relative;
  outline: none;
  margin-right: 7px;
  transition: background 0.18s;
}
.cookie-toggle input:checked {
  background: #CBD43B;
}
.cookie-toggle input:disabled {
  background: #ADADAD;
  cursor: not-allowed;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s, background 0.17s;
}
.cookie-toggle input:checked + span {
  left: 17px;
  background: #1A2233;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}
.cookie-modal .cookie-btn {
  min-width: 96px;
  font-size: 0.98rem;
}


/* MISC: OVERRIDES for ACCESSIBILITY & CONSISTENCY */
[tabindex]:focus, input:focus, select:focus, textarea:focus, button:focus {
  outline: 2px solid #CBD43B;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #B6B7BE; }
::-moz-placeholder { color: #B6B7BE; }
:-ms-input-placeholder { color: #B6B7BE; }
::placeholder { color: #B6B7BE; }


/* Remove number arrows in number inputs for aesthetics */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0; 
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Hide scroll when modal/menu open */
body.menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

/* PRINT STYLES */
@media print {
  .mobile-menu, .mobile-menu-toggle, header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
