/* CSS Reset & Normalize (mobile-first baseline) */
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 {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #f7f7fa;
  color: #232e3e;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f7f7fa;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.3em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #d2dae6;
}

/* Typography: Angular/geometric, clear hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.5px;
  color: #232e3e;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4 {
  font-size: 1.2rem;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #232e3e;
}
strong {
  font-weight: 700;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Geometric/Structured Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, section { padding: 26px 8px; margin-bottom: 32px; }
}

/* Header and Navigation Styles */
header {
  background: #232e3e;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 14px 0 #1c22338f;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 0 32px;
  height: 72px;
  background: none;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 36px;
}
.main-nav a {
  color: #f7f7fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding: 8px 0;
  transition: color .16s;
  font-weight: 600;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  color: #e3b505;
}
.btn-primary {
  background: #e3b505;
  color: #232e3e !important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.07em;
  font-weight: 900;
  border: none;
  box-shadow: 0 2px 8px #e4bc2620;
  cursor: pointer;
  margin-left: 18px;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.25s, color 0.2s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ceb000;
  color: #f7f7fa !important;
  box-shadow: 0 4px 16px #e3b50555;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #232e3e;
  color: #e3b505;
  border: none;
  font-size: 2.5rem;
  padding: 4px 20px 4px 10px;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 12px;
  z-index: 52;
  transition: background .2s;
}
.mobile-menu-toggle:focus { outline: 2px solid #e3b505; }

.mobile-menu {
  position: fixed;
  z-index: 60;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #232e3e;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.8,.2,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 0 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: #e3b505;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  margin-right: 6px;
  padding: 2px 10px;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffe885;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.mobile-nav a {
  color: #f7f7fa;
  background: none;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 2px;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.09em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3b505;
  color: #232e3e;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(125deg, #f7f7fa 70%, #e3b505 100%) 0 0 no-repeat;
  background-color: #f7f7fa;
  padding: 56px 0 36px 0;
  box-shadow: 0 2px 10px #232e3e10;
  margin-bottom: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 20px 0;
    min-height: 200px;
  }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 720px;
}
.hero p {
  font-size: 1.2rem;
  color: #232e3e;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 480px;
}
.hero .btn-primary {
  margin-top: 18px;
  box-shadow: 0 2px 16px #e3b50526;
  font-size: 1.15rem;
}

/* Features Section (geometric structured cards) */
.features {
  background: #f7f7fa;
  min-height: 80px;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px 4px 20px 4px;
  box-shadow: 0 2px 16px #232e3e15;
  padding: 28px 24px 18px 24px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 220px;
  border: 2.5px solid #e3b50526;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
  margin-bottom: 2px;
  filter: saturate(1.1) brightness(1);
}
.feature-grid li strong {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232e3e;
  font-weight: 800;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 30px #232e3e30;
  border-color: #e3b505;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* Card & Section Containers (flex-only) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 7px 17px 7px 17px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #232e3e14;
  position: relative;
  transition: box-shadow .18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 34px #232e3e17;
  transform: translateY(-4px) scale(1.018) skewY(-1.2deg);
}

/* Content grid */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Testimonials */
.testimonials {
  background: #fff;
  padding-top: 24px;
  box-shadow: 0 2px 10px #232e3e10;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px;
  background: #f7f7fa;
  border-radius: 9px 24px 9px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px #232e3e12;
  max-width: 540px;
  border-left: 5px solid #e3b505;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232e3e;
  font-size: 1.08rem;
  transition: box-shadow .18s, border-color .18s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #232e3e;
  box-shadow: 0 6px 26px #232e3e2a;
}
.testimonial-card p {
  color: #232e3e;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card span {
  color: #232e3e;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width: 680px) {
  .testimonial-card { max-width: 100%; padding: 16px 10px; }
}

/* CTA Section */
.cta {
  background: #232e3e;
  color: #f7f7fa;
  border-radius: 10px 34px 10px 34px;
  box-shadow: 0 2px 16px #e3b50511;
  padding: 48px 0 48px 0;
  text-align: center;
}
.cta .container {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 8px;
  background: #e3b505;
  color: #232e3e;
}

/* About Section */
.about, .about-overview {
  background: #fff;
  border-radius: 26px 10px 9px 26px;
  box-shadow: 0 2px 16px #232e3e09;
  padding: 36px 0 36px 0;
}
.about .text-section, .about-overview .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 620px) {
  .about, .about-overview { padding: 24px 0; }
}

.text-section ul {
  margin-top: 12px;
  margin-left: 0;
  padding-left: 26px;
}
.text-section ul li {
  margin-bottom: 10px;
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.text-section ul li img {
  height: 23px;
  width: 23px;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .text-section ul li img { height: 19px; width: 19px; margin-right: 6px; }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* FAQ & Legal Sections */
.faq, .legal, .pricing {
  background: #fff;
  border-radius: 12px 18px 7px 16px;
  box-shadow: 0 4px 24px #232e3e0b;
  margin-bottom: 60px;
}
.faq .content-wrapper, .legal .content-wrapper {
  gap: 20px;
}
.faq .text-section h3, .legal .text-section h2 {
  color: #e3b505;
}
.faq .text-section p {
  margin-bottom: 18px;
}

/* Table Styling (Pricing) */
.pricing-table {
  background: #fafafc;
  box-shadow: 0 2px 10px #bfc8e35c;
  border-radius: 12px;
  margin-bottom: 36px;
  overflow-x: auto;
}
.pricing-table th {
  background: #e3b505;
  color: #232e3e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.09rem;
  text-transform: uppercase;
}
.pricing-table tr:last-of-type td {
  border-bottom: none;
}

/* Contact Info */
.contact-info .text-section ul li {
  color: #232e3e;
}
.contact-info .text-section ul li a:hover {
  text-decoration: underline;
  color: #e3b505;
}

/* Thank You Section */
.thank-you .content-wrapper ul {
  margin-top: 10px;
  margin-left: 0;
}
.thank-you .content-wrapper ul li {
  margin-bottom: 8px;
  padding-left: 4px;
  list-style: disc inside;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #232e3e;
  color: #f7f7fa;
  padding: 0;
}
.footer-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  flex-wrap: wrap;
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px 20px 18px 20px;
  justify-content: space-between;
  border-radius: 38px 0 0 0;
}
.brand-logo img {
  height: 34px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #e3b505;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color .18s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus { color: #ffe885; }
.social-media {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.social-media a img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #fff1;
  transition: filter .15s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: brightness(1.35) drop-shadow(0 2px 6px #e3b50538);
}
.address {
  font-size: 0.98rem;
  color: #f7f7fa;
  margin-top: 5px;
  line-height: 1.65;
  font-family: 'Roboto', Arial, sans-serif;
}
.address a { color: #e3b505; transition: color .17s; }
.address a:hover { color: #ffe885; }
.copyright {
  margin-top: 10px;
  color: #b6b9c4;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #232e3e;
  color: #f7f7fa;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -2px 32px #232e3e40;
  z-index: 1000;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookie-banner-slide-in 0.5s cubic-bezier(.7,1.7,.55,.91);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #f7f7fa;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  border: none;
  background: #e3b505;
  color: #232e3e;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 800;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover {
  background: #ebca57;
  color: #232e3e;
}
.cookie-banner .reject-btn {
  background: #232e3e;
  color: #e3b505;
  border: 2px solid #e3b505;
  margin-left: 0;
  margin-right: 0;
}
.cookie-banner .reject-btn:hover {
  background: #e3b505;
  color: #232e3e;
}

/* Cookie Modal Overlay / Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,46,62,0.84);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-in 0.5s cubic-bezier(.7,1.7,.55,.91);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232e3e;
  padding: 38px 26px 24px 26px;
  border-radius: 13px 13px 25px 13px;
  min-width: 90vw;
  max-width: 420px;
  box-shadow: 0 8px 38px #232e3e44, 0 0.5px 0.9px #e3b50599;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 { font-size: 1.4rem; color: #232e3e; margin-bottom: 8px; font-family: 'Montserrat', Arial, sans-serif; }
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #e3b505;
  border-radius: 2px;
}
.cookie-modal .cookie-modal-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #232e3e;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover {
  color: #e3b505;
}
@media (max-width: 650px) {
  .cookie-modal { min-width: 95vw; max-width: 95vw; padding: 24px 6vw 18px 6vw; }
}

/* Feature item structure */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Utilities for spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

/* Responsive adjustments (mobile-first) */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { padding: 0 6px; gap: 12px; }
}
@media (max-width: 700px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.13rem; }
  .btn-primary { font-size: 0.97rem; padding: 9px 12px; }
  .card, .features .feature-grid li { padding: 18px 10px 14px 10px; }
  .cta, .about, .about-overview, .faq, .pricing, .legal { padding: 18px 0 16px 0; }
  .footer-container { padding: 22px 7px 10px 7px; gap: 8px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.10rem; }
  .btn-primary { font-size: 0.95rem; padding: 7px 9px; }
  .feature-grid li { min-width: 0; }
}

/* Subtle geometric effect for card overlays */
.card::before, .feature-grid li::before {
  content: '';
  position: absolute;
  top: -12px; left: -18px;
  width: 60px; height: 60px;
  background: #e3b50524;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20;
}
.card::before { left: unset; right: -30px; top: -10px; width: 100px; height: 40px; border-radius: 41% 59% 17% 83% / 56% 16% 84% 44%; }

/* List bullets geometric */
ul li::marker {
  color: #e3b505;
  font-size: 1.19em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Input, Table & Form elements */
input, select, textarea {
  padding: 10px;
  border-radius: 3px;
  border: 1.5px solid #d2dae6;
}
input:focus, select:focus, textarea:focus {
  border-color: #e3b505;
  box-shadow: 0 1px 8px #e3b50533;
}

/* Micro interactions & transitions */
button, .btn-primary, a, .card, .feature-grid li, .main-nav a, .footer-nav a, .testimonial-card, .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
  transition: all .18s cubic-bezier(.4,1.7,.85,.9);
}

/* Hide visually but accessible for screen readers */
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* Prevent accidental flex overflow */
.card-container, .content-grid, .feature-grid {
  overflow-x: auto;
}

/* Z-index layering */
.mobile-menu { z-index: 60; }
.mobile-menu-close { z-index: 62; }
.cookie-banner { z-index: 1000; }
.cookie-modal-overlay { z-index: 2000; }

/* Hide scrollbars when not needed (for mobile swipe carousels) */
.feature-grid, .card-container, .content-grid {
  scrollbar-width: thin;
  scrollbar-color: #e3b505 #f7f7fa;
}
.feature-grid::-webkit-scrollbar, .card-container::-webkit-scrollbar, .content-grid::-webkit-scrollbar {
  height: 8px;
  background: #f7f7fa;
}
.feature-grid::-webkit-scrollbar-thumb, .card-container::-webkit-scrollbar-thumb, .content-grid::-webkit-scrollbar-thumb {
  background: #e3b50555;
  border-radius: 4px;
}
