/* CSS RESET AND 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  color: #2B2A27;
  font-family: 'Lato', Arial, sans-serif;
  background: #212022;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

/* BRAND COLORS */
:root {
  --color-primary: #2B2A27;
  --color-secondary: #DBB273;
  --color-accent: #F5F3EE;
  --color-background: #212022;
  --color-neon-blue: #54cdf9;
  --color-neon-purple: #a884ff;
  --color-gradient-dark: #25242b;
  --color-gradient-light: #343242;
  --color-shadow: rgba(85, 186, 255, 0.08);
  --color-shadow-strong: rgba(85, 186, 255, 0.16);
}

/* FONTS - LOAD IN HEAD */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background: linear-gradient(135deg, var(--color-gradient-dark) 0%, var(--color-gradient-light) 100%);
  color: var(--color-accent);
}

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

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

/* HEADER */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--color-gradient-dark) 60%, var(--color-gradient-light) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px 0 var(--color-shadow);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  background: rgba(219, 178, 115, 0.10);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}
header img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 1px 0 var(--color-secondary));
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 10px 30px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.22s;
  margin-top: 10px;
  border: none;
}
.cta-primary {
  background: linear-gradient(90deg, var(--color-secondary) 60%, var(--color-neon-blue) 120%);
  color: var(--color-primary);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #fff3c5 40%, var(--color-neon-blue) 100%);
  color: var(--color-neon-purple);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 32px 0 var(--color-shadow-strong);
}
.cta-secondary {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 3px 16px 0 var(--color-shadow-strong);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-gradient-dark);
  color: var(--color-neon-blue);
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  z-index: 150;
  margin-left: auto;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 370px;
  background: linear-gradient(100deg, #26243a 70%, #232128 100%);
  box-shadow: -7px 0 28px 0 var(--color-shadow-strong);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.67,.03,.38,.98);
  padding: 0 0 20px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-neon-blue);
  background: transparent;
  border: none;
  padding: 20px 18px 14px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 30px 0 30px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon-blue);
  background: rgba(85, 205, 249, 0.07);
}

/* HERO AND SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(41,41,45, 0.85);
  border-radius: 32px;
  box-shadow: 0 4px 36px 0 var(--color-shadow);
}
section:last-child {
  margin-bottom: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(219,178,115,0.11);
}
h1 { font-size: 2.1rem; margin-bottom: 18px; }
h2 { font-size: 1.45rem; margin-bottom: 16px; }
h3 { font-size: 1.19rem; }
p, li, address { font-size: 1rem; color: var(--color-accent); line-height: 1.72; }
li { margin-bottom: 12px; }
strong { color: var(--color-neon-blue); font-weight: 700; }

address {
  font-style: normal;
  margin: 6px 0 0 0;
  color: var(--color-accent);
  line-height: 1.7;
}

/* LISTS & ICONS */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}
li img {
  height: 22px;
  width: 22px;
  margin-right: 8px;
  filter: drop-shadow(0 0 8px var(--color-neon-blue));
}

/* SECTION LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: rgba(36,37,47, 0.94);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  padding: 34px 24px;
  transition: transform 0.18s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 36px 0 var(--color-shadow-strong);
}
.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: #f7f6f3;
  color: #222;
  border-radius: 17px;
  margin-bottom: 20px;
  box-shadow: 0 3px 20px 0 rgba(85,186,255,0.08);
  border-left: 6px solid var(--color-neon-blue);
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card p {
  color: #1f2128;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.96rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 6px solid var(--color-secondary);
  box-shadow: 0 8px 32px 0 rgba(219,178,115,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 10px;
}

/* FOOTER */
footer {
  width: 100%;
  padding: 36px 10px;
  background: #1a1a1a;
  color: var(--color-accent);
  margin-top: 90px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  justify-content: center;
}
footer nav a {
  color: var(--color-neon-blue);
  transition: color 0.18s, text-decoration 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
footer .company-info {
  text-align: center;
  font-size: 0.9rem;
  color: #d6d3cd;
}
footer .company-info p {
  margin-bottom: 5px;
  color: #d6d3cd;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg,#313e3f 70%,#343242 100%);
  color: #f5f3ee;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  z-index: 1500;
  padding: 28px 20px 28px 20px;
  box-shadow: 0 -4px 32px 0 rgba(85,186,255,0.13);
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.78,.13,.53,.83);
}
.cookie-banner.closed {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  max-width: 480px;
  padding-right: 22px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 7px 17px;
  border-radius: 7px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.01rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--color-secondary);
  color: var(--color-primary);
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  margin: 0 2px;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-neon-blue);
  border: 2px solid var(--color-neon-blue);
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-neon-blue);
  color: #152028;
}
.cookie-btn.reject {
  background: #232128;
  color: #f5f3ee;
  border: 2px solid #555;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #343242;
  color: var(--color-neon-blue);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-neon-blue);
  color: #1a1a28;
  box-shadow: 0 0 8px 0 var(--color-neon-blue);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 32, 40, 0.67);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
  pointer-events: all;
}
.cookie-modal {
  background: #232128;
  color: #f5f3ee;
  border-radius: 15px;
  padding: 34px 26px 26px 26px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 8px 38px 0 rgba(85,186,255,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.39s cubic-bezier(.59,.07,.37,.83);
}
@keyframes cookie-modal-in { 
  from { transform: scale(.94) translateY(16px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-secondary);
  font-size: 1.28rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-neon-blue);
  width: 18px;
  height: 18px;
  margin: 0 4px 0 0;
}
.cookie-category.essential {
  color: #f5f3ee;
  font-weight: 700;
}
.cookie-modal .cookie-actions {
  margin-top: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--color-neon-blue);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--color-secondary);
}

/* INTERACTIVE & HOVER STATES */
a, button, .cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-close {
  outline: none;
  transition: box-shadow 0.19s, background 0.15s, color 0.15s, border 0.16s, transform 0.19s;
  will-change: transform;
}
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2px var(--color-neon-blue);
}

/* MICRO-INTERACTIONS */
.cta-primary:active,
.cta-secondary:active {
  transform: scale(0.975);
}
button:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* GLOBAL SPACINGS */
.section,
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;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  section {
    padding: 32px 8px;
    border-radius: 23px;
  }
  .card {
    padding: 26px 16px;
    border-radius: 13px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 13px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    padding: 7px 18px;
    font-size: 0.99rem;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
  section {
    padding: 30px 3px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    margin-bottom: 15px;
    padding: 17px 10px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .testimonial-card {
    padding: 15px 7px;
    font-size: 0.99rem;
  }
  footer {
    padding: 24px 3px;
    margin-top: 38px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: .96rem;
    padding: 19px 7px 19px 7px;
  }
  .cookie-banner p {
    max-width: 100%;
    padding-right: 0;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 92vw;
    padding: 17px 8px 19px 8px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.01rem; }
  p, address, li { font-size: 0.95rem; }
}

/* ACCESSIBILITY */
:focus {
  outline: none !important;
}

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

/* Z-INDEX CONTROL FOR OVERLAYS */
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 9999;
}

/* END OF STYLE.CSS */
