/* ==== CSS RESET & NORMALIZATION ==== */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  background: #F5F7FA;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #222A35;
  min-height: 100vh;
  background: #F5F7FA;
  line-height: 1.6;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #222A35;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7A9AC;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
}

/* ==== FONT FACE ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ==== TYPOGRAPHY ==== */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #222A35;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.32rem; font-weight: 600; margin-bottom: 12px; }

p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222A35;
}

.text-section h2, .text-section h3 {
  margin-top: 20px;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34,42,53,0.06);
  padding: 24px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(34,42,53,0.15);
  transform: translateY(-3px);
}
.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: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px 0 rgba(34,42,53,0.06);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 460px;
}
.testimonial-card p {
  color: #222A35;
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #A7A9AC;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== HEADER ==== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,42,53,0.06);
  padding: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222A35;
  font-weight: 500;
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A7A9AC;
  text-decoration: underline;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 20px;
}
header .cta.primary {
  margin-left: 14px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222A35;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 32px;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover {
  background: #F5F7FA;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,42,53,0.92);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1), opacity 0.31s;
  opacity: 0;
  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.1rem;
  margin: 22px 24px 0 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #A7A9AC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px;
  margin-left: 30px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.38rem;
  letter-spacing: 0.01em;
  padding: 12px 0;
  width: 100%;
  border-radius: 7px;
  transition: background 0.21s, color 0.21s;
}
.mobile-nav a:hover {
  background: #F5F7FA;
  color: #222A35;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(120deg, #F5F7FA 90%, #E8EAEE 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 20px;
  padding: 14px 0;
}
.hero h1 {
  color: #222A35;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.12rem;
  color: #666d7a;
  margin-bottom: 12px;
}

/* ==== FEATURE SECTION ==== */
.feature-section {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: 0 2px 12px 0 rgba(34,42,53,0.06);
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 300px;
  background: #F5F7FA;
  border-radius: 13px;
  padding: 20px 18px;
  gap: 8px;
  border: 1.5px solid #ECEEF0;
  box-shadow: 0 2px 8px 0 rgba(34,42,53,0.03);
  transition: box-shadow 0.16s;
}
.feature-list li:hover {
  box-shadow: 0 6px 20px 0 rgba(34,42,53,0.13);
}
.feature-list li img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
}
.feature-list strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.feature-list p {
  font-size: 0.98rem;
  color: #444A55;
  margin-bottom: 0;
}

/* ==== SERVICE LIST ==== */
.service-list, .service-list-full {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.service-list li, .service-list-full li {
  background: #F5F7FA;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #ECEEF0;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.service-list li strong, .service-list-full h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #222A35;
}
.service-list-full h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-list-full h3 span {
  color: #A7A9AC;
  font-size: 1rem;
  font-weight: 400;
}
.service-list-full p {
  color: #444A55;
}

/* ==== CTA BUTTONS ==== */
.cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  font-weight: 600;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 64px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.21s, color 0.21s, box-shadow 0.18s, transform 0.16s;
  box-shadow: 0 1.5px 6px 0 rgba(34,42,53,0.06);
}
.cta.primary {
  background: #222A35;
  color: #fff;
  border: 2px solid #222A35;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #fff;
  color: #222A35;
  border: 2px solid #222A35;
  box-shadow: 0 2px 24px 0 rgba(34,42,53,0.13);
  transform: translateY(-1.5px);
}
.cta.secondary {
  background: #fff;
  color: #222A35;
  border: 2px solid #222A35;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #222A35;
  color: #fff;
  border: 2px solid #222A35;
}

/* ==== TEXT BLOCKS & ABOUT SECTIONS ==== */
.text-section {
  background: #fff;
  border-radius: 10px;
  padding: 32px 20px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px 0 rgba(34,42,53,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  padding: 36px 0 18px 0;
  box-shadow: 0 -1px 8px 0 rgba(34,42,53,0.02);
  margin-top: 72px;
  position: relative;
  z-index: 10;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #A7A9AC;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #222A35;
}
.footer-info {
  text-align: center;
  color: #818489;
  font-size: 0.93rem;
}

/* ==== SECTION SPACING (MANDATORY) ==== */
.section, .hero, .about-section, .services-section, .cta-section, .testimonial-section, .thankyou-section, .legal-section, .feature-section, .about-preview, .services-preview, .inspiration-preview, .contact-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== TESTIMONIAL SECTION ==== */
.testimonial-section .container {
  display: flex;
  flex-direction: column;
}
.testimonial-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(34,42,53,0.05);
  padding: 20px;
  margin-bottom: 20px;
  color: #222A35;
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow 0.20s, transform 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(34,42,53,0.13);
  transform: translateY(-2px);
}

/* ==== THANK YOU SECTION ==== */
.thankyou-section .text-section {
  background: #F5F7FA;
  box-shadow: none;
}
.thankyou-section .cta.primary {
  margin-top: 18px;
}

/* ==== CONTACT CTA ==== */
.contact-cta {
  margin-top: 22px;
}
.contact-section p {
  margin-bottom: 12px;
}
.contact-section a {
  word-break: break-all;
}

/* ==== LEGAL PAGE STYLE ==== */
.legal-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34,42,53,0.06);
}
.legal-section .text-section {
  box-shadow: none;
  background: transparent;
}

/* ==== ANIMATIONS & TRANSITIONS ==== */
.cta,
.card,
.feature-list li,
.testimonial-card,
.mobile-menu,
.mobile-menu-toggle,
.mobile-menu-close {
  transition: all 0.19s cubic-bezier(.75,0,.15,1);
}

/* ==== RESPONSIVE DESIGN (MOBILE-FIRST) ==== */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding: 0 7vw;
  }
  .feature-list {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper, .content-grid {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .footer-nav {
    gap: 15px;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .footer-info {
    font-size: 0.87rem;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 6vw;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.05rem; }
  .section, .hero, .about-section, .services-section, .cta-section, .testimonial-section, .thankyou-section, .legal-section, .feature-section {
    padding: 24px 5vw;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  color: #222A35;
  box-shadow: 0 -2px 16px 0 rgba(34,42,53,0.13);
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  font-size: 0.97rem;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0 0 8px 0;
  color: #222A35;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  margin-left: 10px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.cookie-banner .cookie-btn.accept {
  background: #222A35;
  color: #fff;
  border: 1px solid #222A35;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #fff;
  color: #222A35;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #222A35;
  border: 1px solid #A7A9AC;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #A7A9AC;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: #A7A9AC;
  border: 1px solid #fff;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #ECEEF0;
  color: #222A35;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 94vw;
  max-width: 380px;
  background: #fff;
  color: #222A35;
  border-radius: 13px;
  box-shadow: 0 6px 40px 0 rgba(34,42,53,0.29);
  z-index: 10010;
  padding: 26px 18px 20px 18px;
  display: none;
  flex-direction: column;
  gap: 16px;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s, transform 0.23s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.36rem;
  color: #222A35;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color 0.17s;
}
.cookie-modal-close:hover { color: #A7A9AC; }
.cookie-modal h2 {
  font-size: 1.13rem;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #222A35;
  transform: scale(1.1);
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-category.essential span.label {
  opacity: 0.68;
  font-style: italic;
}
.cookie-modal .cookie-btn {
  width: 100%;
  margin-left: 0;
  margin-top: 10px;
  padding: 12px 0;
}

/* ==== ACCESSIBLE/STATE STYLES ==== */
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #A7A9AC;
  outline-offset: 2px;
}

/* ==== ACCESSIBILITY HELPER ==== */
.sr-only {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==== NATURAL-LIKE ACCENTS ==== */
.feature-item, .feature-list li, .service-list li, .service-list-full li {
  border: 1px solid #ECEEF0;
  box-shadow: 0 1.5px 6px 0 rgba(34,42,53,0.06);
  background: #F5F7FA;
}

/* ==== MISCELLANEOUS ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #ECEEF0;
  border-radius: 8px;
}

/* ==== Z-INDEX CONVENTION ==== */
header, .mobile-menu { z-index: 100; }
footer { z-index: 10; }

/* ==== NO ABSOLUTE FOR CARDS - ONLY ALLOW DECORATIVE ==== */

/* ==== FLEXBOX-ONLY RULES: NO GRID PROPERTIES ANYWHERE ==== */
/* All layout containers use display: flex only as specified */
