/* ================== 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,menu,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%;
  font: inherit;
  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.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1EEDB;
  color: #284553;
  min-height: 100vh;
}
*,::before,::after {
  box-sizing: border-box;
}
a {
  color: #225769;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.63,.09,.44,1.27);
}
a:hover,a:focus {
  color: #A3C1B9;
  text-decoration: underline;
}
ul,ol {
  margin-left: 1.4em;
  margin-bottom: 1.2em;
}
img {
  max-width: 100%;
  display: block;
}

/* ================== BRAND FONTS & TYPOGRAPHY ================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #284553;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: #225769;
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3B6C80;
}
p,li,dd {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #225769;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(40,69,83,0.07);
}
th,td {
  padding: 16px 14px;
  text-align: left;
}
th {
  background: #A3C1B9;
  color: #284553;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
td {
  border-bottom: 1px solid #ECE8E6;
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}
dt {
  font-weight: bold;
  margin-top: 10px;
}
dd {
  margin-left: 0;
}

/* ================== CREATIVE_ARTISTIC VIBES ================== */
body {
  background: #F1EEDB;
}
.section,main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper,.text-section {
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 rgba(40,69,83,0.08), 0 2px 1px 0 #A3C1B9;
  padding: 32px 24px;
  margin: 0 auto;
  max-width: 800px;
  font-size: 1.1em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
}

/* ================== FLEX LAYOUTS ================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 3px 16px 0 rgba(163,193,185,0.17);
  transition: box-shadow 0.19s cubic-bezier(.66,.12,.4,1), transform 0.18s cubic-bezier(.44,.15,.56,1);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,69,83,0.16);
  transform: translateY(-4px) scale(1.017);
}
.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: 20px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(40,69,83,0.11);
  margin-bottom: 20px;
  border-left: 6px solid #A3C1B9;
}
.testimonial-card p {
  color: #284553;
  font-size: 1.075em;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card strong {
  margin-left: auto;
  font-size: 1em;
  color: #284553;
  font-family: 'Montserrat',sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== HEADER & NAVIGATION ================== */
header {
  background: #284553;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 14px 0 rgba(40,69,83,.1);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  min-height: 64px;
}
header img[alt='TechnikOase'] {
  max-height: 54px;
  margin-right: 14px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 8px;
  position: relative;
  transition: background 0.15s cubic-bezier(.42,1.17,.48,.99), color 0.15s cubic-bezier(.42,1.17,.48,.99);
}
header nav a:hover,header nav a:focus {
  background: #A3C1B9;
  color: #284553;
}

.cta {
  background: #A3C1B9;
  color: #284553;
  font-family: 'Montserrat',sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  border-radius: 14px;
  padding: 12px 32px;
  font-size: 1.18rem;
  transition: background 0.19s cubic-bezier(.8,.08,.19,.93), color 0.18s cubic-bezier(.2,.9,.67,1);
  box-shadow: 0 1px 8px 0 rgba(163,193,185,.12);
  border: 0;
  cursor: pointer;
  margin-left: 16px;
  text-decoration: none!important;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: #225769;
  box-shadow: 0 4px 22px 0 rgba(40,69,83,0.11);
}

/* Mobile burger + menu */
.mobile-menu-toggle {
  background: #A3C1B9;
  color: #284553;
  font-size: 2rem;
  line-height: 1;
  border: none;
  padding: 6px 18px 8px 18px;
  border-radius: 11px;
  display: none;
  margin-left: 8px;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 2px 6px 0 rgba(40,69,83,0.09);
  transition: background 0.16s cubic-bezier(.43,.8,.38,1);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #225769;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #284553;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.42,1.17,.48,.99);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 16px;
  cursor: pointer;
  z-index: 1201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat',sans-serif;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 0;
  display: block;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s cubic-bezier(.44,.32,.29,1.18);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #A3C1B9;
  color: #284553;
}
@media (max-width: 992px) {
  header nav { display: none; }
  .cta { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 700px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 54px;
  }
  .content-wrapper, .text-section {
    padding: 20px 10px;
    border-radius: 12px;
  }
}

/* ================== FOOTER ================== */
footer {
  background: #225769;
  color: #fff;
  padding: 32px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
footer img[alt='TechnikOase'] {
  max-height: 40px;
}
footer nav {
  display: flex;
  gap: 17px;
}
footer nav a {
  color: #fff;
  font-size: 0.98rem;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.15s cubic-bezier(.5,1,.9,1);
}
footer nav a:hover,footer nav a:focus {
  background: #A3C1B9;
  color: #284553;
}
footer p {
  margin: 0;
  font-size: 0.98rem;
  flex: 1 1 100%;
  margin-top: 6px;
  text-align: right;
}
@media (max-width: 750px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer nav {
    flex-wrap: wrap;
    gap: 7px;
  }
  footer p {
    text-align: left;
    margin-top: 10px;
  }
}

/* ================== BUTTONS & INTERACTIONS ================== */
button, .cta {
  outline: none;
}
button:focus-visible, .cta:focus-visible {
  outline: 2px solid #284553;
  outline-offset: 2px;
}

/* For in-content links */
.content-wrapper a:not(.cta),
.text-section a:not(.cta){
  color: #36668A;
  font-weight: 600;
  border-bottom: 1.5px dashed #A3C1B9;
  transition: color 0.14s cubic-bezier(.54,.41,.51,1.12), border-bottom 0.13s;
}
.content-wrapper a:not(.cta):hover, .text-section a:not(.cta):hover {
  color: #A3C1B9;
  border-bottom: 1.5px solid #36668A;
}

/* ================== ARTISTIC ELEMENTS (Highlights/Icons) ================== */
ul li img {
  width: 27px;
  height: 27px;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px #A3C1B9);
}
ul li {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 8px;
}

/* ================== CARDS & SPECIAL SECTIONS ================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

@media (max-width: 600px) {
  .card-container,.content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ================== SPACING ================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #284553;
  color: #fff;
  z-index: 2000;
  padding: 16px 8px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 16px 0 rgba(40,69,83,0.12);
  animation: bannerIn 0.7s cubic-bezier(.44,.29,.4,1) 1;
}
@keyframes bannerIn {
  0% {transform: translateY(140%); opacity:0;}
  80% {transform: translateY(-10%); opacity:1;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  margin: 0 8px 10px 0;
  font-family: 'Open Sans',sans-serif;
  color: #fff;
  font-size: 1.06em;
  text-align: center;
}
.cookie-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 18px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .14s cubic-bezier(.44,.29,.4,1), color 0.13s;
}
.cookie-btn.accept {
  background: #A3C1B9;
  color: #284553;
}
.cookie-btn.accept:hover {
  background: #fff;
  color: #225769;
}
.cookie-btn.reject {
  background: #fff;
  color: #284553;
  border: 1.5px solid #A3C1B9;
}
.cookie-btn.reject:hover {
  background: #A3C1B9;
  color: #284553;
}
.cookie-settings-btn {
  background: #F1EEDB;
  color: #284553;
  border: 1.5px solid #A3C1B9;
}
.cookie-settings-btn:hover {
  background: #A3C1B9;
  color: #284553;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 7px 18px 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-60%) scale(0.96);
  background: #fff;
  color: #284553;
  padding: 35px 25px 25px 25px;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(40,69,83,0.23);
  min-width: 330px;
  max-width: 95vw;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s cubic-bezier(.44,.29,.4,1), transform .34s cubic-bezier(.44,.29,.4,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.cookie-category .toggle {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #A3C1B9;
  border-radius: 11px;
  position: relative;
  transition: background .13s;
  margin-left: 8px;
}
.cookie-category .toggle input[type='checkbox'] {
  display: none;
}
.cookie-category .toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 9px;
  transition: left .16s;
}
.cookie-category .toggle input[type='checkbox']:checked + span {
  left: 18px;
  background: #225769;
}
.cookie-modal-footer {
  display: flex;
  gap: 19px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  background: #A3C1B9;
  color: #284553;
  transition: background 0.12s, color 0.12s;
  cursor: pointer;
}
.cookie-modal button:hover {
  background: #225769;
  color: #fff;
}
.cookie-modal .essential {
  background: #ECE8E6;
  color: #666;
  font-size: 0.95em;
  border-radius: 8px;
  padding: 5px 13px;
  margin-left: 8px;
}

@media (max-width: 460px) {
  .cookie-modal {padding: 12px 3px; min-width:180px;}
}

/* ================== RESPONSIVE ================== */
@media (max-width: 700px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.98rem; }
  .section, main section {
    margin-bottom: 32px;
    padding: 19px 1px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 16px 9px;
  }
}

/* ================== ANIMATIONS & MICRO-INTERACTIONS ================== */
.cta, .cookie-btn, .cookie-modal button, .mobile-menu-toggle {
  transition: background 0.16s cubic-bezier(.77,.32,.41,.92), color 0.16s cubic-bezier(.67,.02,.51,1);
}
.card, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.64,.26,.33,.97), transform 0.19s cubic-bezier(.51,.04,.4,.94);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(40,69,83,0.14);
  transform: translateY(-2px) scale(1.008);
}

/* ================== MISC ================== */
::-webkit-scrollbar { height:12px; width: 8px; background: #F1EEDB; }
::-webkit-scrollbar-thumb { background: #A3C1B9; border-radius: 8px; }
::-webkit-selection { background: #A3C1B9; color: #284553; }
::selection { background: #A3C1B9; color: #284553; }

hr {
  border: 0; border-top: 1.5px solid #A3C1B9; margin: 36px 0 24px 0;
}

/* Artistic shapes as visual flourishes */
.section::after {
  content: '';
  display: block;
  position: absolute;
  right:30px; bottom: 15px;
  width: 56px; height: 56px;
  background: #A3C1B9;
  opacity: 0.14;
  border-radius: 22px 44px 28px 47px;
  z-index: 0;
}
.section:nth-child(odd)::after {
  left:28px; right: auto; bottom:30px;
  background: #284553;
  opacity: 0.08;
}

@media (max-width: 650px) {
  .section::after { display:none; }
}

/* ================== END ================== */
