/*------------------------------------------------------
  Smooth Globe Fotokunst CSS – Monochrome Sophisticated
--------------------------------------------------------*/

/* 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
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;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
}
:focus {
  outline: 2px solid #1A2B49;
  outline-offset: 2px;
}

/*-----------------------------------
  Typography: Elegant, Modern Mono
-------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  color: #1A2B49;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  color: #181818;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  color: #232323;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, ul, ol, li, span {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #232323;
  font-size: 1rem;
}
.section > .container > .content-wrapper.text-section p,
.section > .container > .content-wrapper.text-section ul,
.section > .container > .content-wrapper.text-section ol {
  color: #2a2a2a;
  font-size: 1.08rem;
  margin-bottom: 16px;
}
strong {
  color: #1A2B49;
  font-weight: 700;
}

/* Links */
a {
  font-weight: 500;
  color: #1A2B49;
  position: relative;
}
a:hover, a:focus {
  color: #4BC4B3;
  text-decoration: underline;
}

/*-----------------------------------
  Layout Containers
-------------------------------------*/
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
main > section {
  margin-bottom: 0;
}

/*-----------------------------------
  Header Navigation
-------------------------------------*/
header {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(20,16,28,0.04);
  padding: 22px 24px;
  border-bottom: 1px solid #e6e6e6;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #1A2B49;
  color: #fff;
}
.cta-primary {
  display: inline-block;
  background: #1A2B49;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 30px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #4BC4B3;
  color: #1A2B49;
  box-shadow: 0 3px 12px 0 rgba(26,43,73,0.12);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 7px;
  background: #1A2B49;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.18s;
  margin-left: 6px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #161616;
}
/*------------------------------
  Mobile Nav Overlay
-------------------------------*/
.mobile-menu {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(20, 20, 32, 0.96);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  padding-left: 0;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.72,0,.23,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #fff;
  align-self: flex-end;
  margin-right: 32px;
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232323;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 34px 0 0 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 8px;
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #1A2B49;
}

/*------------------------
  Main Sections & Layout
-------------------------*/
.feature-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 32px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px 24px;
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(30,30,34,0.11);
  padding: 30px 26px 22px 26px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 310px;
  transition: box-shadow 0.21s, transform 0.21s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 22px 0 rgba(20,28,36,0.14);
  transform: translateY(-6px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.price-tag {
  background: #fff;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  margin-top: 7px;
  display: inline-block;
  box-shadow: 0 1px 5px 0 rgba(80,80,80,0.07);
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fafbfc;
  padding: 22px 18px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(26,43,73,0.07);
  min-width: 220px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: box-shadow 0.15s, background 0.18s;
}
.feature-item img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.3);
  opacity: 0.9;
}
.feature-item h3 {
  color: #1A2B49;
  font-size: 1.12rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item p {
  color: #222;
  font-size: 1rem;
}
.feature-item .price-tag {
  margin-top: 8px;
  border: 1px solid #dadada;
}
.feature-item:hover {
  box-shadow: 0 4px 16px 0 rgba(82,82,92,0.08);
  background: #f5f7fa;
}

/*------------------
  Testimonial Cards
-------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(30,30,40,0.09);
  padding: 20px 28px 20px 24px;
  margin-bottom: 20px;
  border-left: 5px solid #1A2B49;
  min-width: 220px;
  max-width: 560px;
  font-size: 1.07rem;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(120,120,140,0.11);
  border-left-color: #4BC4B3;
}
.testimonial-card p {
  color: #161616;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #444;
  font-size: 0.96rem;
  font-style: italic;
  margin-left: 6px;
}
.star-rating {
  color: #111;
  font-size: 1.18rem;
  letter-spacing: 1.6px;
}

/*---------------------------
  Footer
-----------------------------*/
footer {
  background: #1A2B49;
  color: #f4f4f4;
  padding: 40px 20px 22px 20px;
  border-top: 1px solid #dde0e7;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 36px;
  width: 36px;
  filter: grayscale(100%) brightness(2);
}
.footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #deeeef;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #d3e7e7;
  font-size: 0.98rem;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.14s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #1A2B49;
}
.footer-contact {
  background-color: #cccfd1;
  font-size: 0.99rem;
  margin-top: 10px;
  line-height: 1.7;
}
.footer-contact span {
  margin: 0 4px;
}

/*---------------------------
  Cookie Consent Banner
-----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1500;
  background: #232323;
  color: #fff;
  box-shadow: 0 -2px 24px 0 rgba(14,14,24,0.20);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 24px;
  transition: transform 0.32s cubic-bezier(.7,0,.23,1);
}
.cookie-banner.closed {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  color: #fafbfc;
  font-size: 1rem;
  max-width: 680px;
}
.cookie-banner-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  padding: 9px 21px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  color: #1A2B49;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 1px 4px 0 rgba(140,140,160,0.09);
}
.cookie-btn.accept {
  background: #1A2B49;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #4BC4B3;
  color: #111;
}
.cookie-btn.reject {
  background: #fff;
  color: #1A2B49;
  border: 1.5px solid #1A2B49;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1A2B49;
  color: #fff;
}
.cookie-btn.settings {
  background: #f8f7f2;
  color: #232323;
  border: 1px solid #dadada;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #232323;
  color: #fff;
  border: 1px solid #4BC4B3;
}

/* Cookie Modal Popup */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,28,36,0.82);
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1A2B49;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(26,43,73,0.23);
  max-width: 440px;
  width: 94vw;
  padding: 36px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieFadeIn 0.33s cubic-bezier(.7,0,.34,1);
  z-index: 1650;
}
@keyframes cookieFadeIn {
  from { transform: translateY(80px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: #1A2B49;
}
.cookie-modal-cats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-cat label {
  flex: 1 1 70%;
  font-size: 1rem;
  color: #232323;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 11px;
  background: #ddd;
  position: relative;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fafbfc;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input:checked + span {
  left: 19px;
  background: #4BC4B3;
}
.cookie-cat[aria-disabled="true"] .cookie-toggle {
  background: #c6d2dc;
}
.cookie-cat[aria-disabled="true"] label {
  color: #aaa;
  text-decoration: line-through;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 13px;
  font-size: 1.5rem;
  color: #1A2B49;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #4BC4B3;
}

/*-------------------------------
  Misc Forms, Lists, Elements
--------------------------------*/
ul, ol {
  padding-left: 1rem;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

/* Buttons */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 9px 28px;
  transition: background 0.17s, color 0.15s, box-shadow 0.12s;
  cursor: pointer;
  border: none;
}

/* Card container spacing */
.card-container > *,
.feature-grid > *,
.content-grid > * {
  margin-bottom: 20px;
}

/*-------------------------------
  Responsive Design
--------------------------------*/
@media (max-width: 1100px) {
  .feature-grid, .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  header {
    flex-direction: column;
    gap: 16px;
    padding: 18px 10px;
    align-items: stretch;
  }
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  .cta-primary {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper, .text-section {
    align-items: flex-start;
    max-width: 100%;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 21px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer {
    padding: 33px 7px 15px 7px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.74rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.37rem;
    margin-bottom: 13px;
  }
  .footer-brand img {
    height: 28px;
    width: 28px;
  }
  .feature-item, .card, .testimonial-card {
    padding: 18px 9px 15px 12px;
    min-width: 0;
  }
  .mobile-menu {
    padding-top: 20px;
    min-width: 0;
  }
  .mobile-nav {
    margin-left: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 7px;
  }
  .cookie-banner p {
    font-size: 0.98rem;
    max-width: 92vw;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 22px 7px 13px 7px;
    min-width: 0;
  }
}
/*--------------------------------------
  Hide Main Nav on Mobile, Show Burger
---------------------------------------*/
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/*--------------------------------------
  Accent + Micro-Interactions
---------------------------------------*/
.feature-item:hover img,
.feature-item:focus img {
  filter: grayscale(50%) contrast(1.25) brightness(1.18);
  transform: scale(1.07);
  transition: filter 0.14s, transform 0.17s;
}
.feature-item:active {
  background: #ececec;
}
.cta-primary:active, .cta-primary:focus {
  outline: 2px solid #4BC4B3;
}
.card:hover, .testimonial-card:hover {
  transition: box-shadow 0.21s, transform 0.21s, border-color 0.2s;
}

/*--------------------------------------
  Forms (Contact, etc)
---------------------------------------*/
input, textarea {
  background: #f8f7f2;
  border: 1px solid #bfc4cc;
  border-radius: 7px;
  padding: 9px 13px;
  font-size: 1.03rem;
  margin-bottom: 14px;
  color: #191919;
  transition: border 0.13s, background 0.13s;
}
input:focus, textarea:focus {
  border: 1.5px solid #1A2B49;
  background: #fff;
}

/*--------------------------------------
  Details & Utility Classes
---------------------------------------*/
::-webkit-scrollbar { width: 8px; background: #f3f3f5; }
::-webkit-scrollbar-thumb { background: #d1d3d6; border-radius: 8px; }

.hide {
  display: none !important;
}

/* Classes per MANDATORY CSS SPACING AND ALIGNMENT PATTERNS */
.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; }

/*******************************
    Sophisticated Monochrome
*******************************/
body {
  background: #fafbfc;
}
.section {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 18px 0 rgba(16,21,25,0.07);
}

/**************************************************
   END – Smooth Globe Fotokunst Main CSS
**************************************************/
