/* 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,
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;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #1A2433;
  min-height: 100vh;
  line-height: 1.6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #0E3258;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F4952A;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}
/* PRIMARY TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0E3258;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0E3258;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0E3258;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0E3258;
  font-weight: 600;
  margin-bottom: 8px;
}
p, ul, ol, .text-section {
  font-size: 1rem;
  color: #1A2433;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #e8eaf088;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #e8eaf055;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  transition: transform 0.16s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 #0E325822;
  transform: translateY(-4px) scale(1.02);
}
.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: #E8EAF0;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 #0E32581A;
  min-width: 260px;
  border-left: 6px solid #F4952A;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 #0E325844;
  border-left-color: #0E3258;
}
.testimonial-rating {
  font-size: 1.2rem;
  color: #F4952A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-client {
  font-size: 1rem;
  color: #0E3258;
  font-weight: 600;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* HERO AREA */
.hero {
  padding: 64px 0 40px;
  background: #E8EAF0;
  border-bottom: 5px solid #F4952A;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero p {
  font-size: 1.25rem;
  max-width: 540px;
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 40px;
  padding: 12px 32px;
  text-align: center;
  text-decoration: none;
  outline: none;
  box-shadow: 0 2px 8px 0 #0e325810;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, border 0.2s, transform 0.13s;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}
.btn-primary {
  background: #0E3258;
  color: #fff;
  border: 2px solid #0E3258;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F4952A;
  border-color: #F4952A;
  color: #fff;
  box-shadow: 0 6px 20px 0 #F4952A30;
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #fff;
  color: #0E3258;
  border: 2px solid #0E3258;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E8EAF0;
  color: #0E3258;
  border-color: #F4952A;
  transform: translateY(-2px) scale(1.025);
}
/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #E8EAF0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #F4952A;
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4952A;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
header .btn-primary {
  margin-left: 32px;
}
/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #0E3258;
  background: #E8EAF0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 201;
  border: none;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4952A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 40px #0E32581e;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.45,1.25,.45,1.04);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  font-size: 2.2rem;
  background: #E8EAF0;
  color: #0E3258;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4952A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: #0E3258;
  padding: 16px 36px;
  border-radius: 32px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4952A;
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* PAGE SECTIONS & COMPONENTS */
.features ul, .process ol, .services ul, .services-overview ul, .why-us ul,
.about ul, .team ul, .faq-list, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.features li, .about ul li, .why-us ul li,
.team ul li, .faq-list .faq-item, .services ul li, .services-overview ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #E8EAF0;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #0E3258;
  box-shadow: 0 1px 4px 0 #0E325812;
}
.features li img, .about ul li img, .why-us ul li img,
.team ul li img, .services ul li img {
  width: 28px;
  height: 28px;
}
.services ul, .services-overview ul {
  gap: 24px;
}
.services ul li, .services-overview ul li {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 220px;
  border-left: 4px solid #0E3258;
  box-shadow: 0 2px 8px 0 #E8EAF022;
}
.service-price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  color: #F4952A;
  border-radius: 18px;
  font-size: 1rem;
  padding: 4px 14px;
  margin-top: 8px;
  letter-spacing: 0.01em;
  border: 1.5px solid #F4952A;
}
.services a.btn-secondary { margin-top: 20px; }
.process ol, .process-flow ol {
  padding: 0;
  list-style-position: inside;
  counter-reset: stepnr;
}
.process ol li, .process-flow ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #0E3258;
  font-family: 'Roboto', Arial, sans-serif;
}
.process ol li::before, .process-flow ol li::before {
  counter-increment: stepnr;
  content: counter(stepnr) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4952A;
  font-weight: 900;
  font-size: 1.1rem;
}
.faq-list {
  gap: 20px;
}
.faq-item {
  background: #E8EAF0;
  border-radius: 11px;
  padding: 18px 22px;
  box-shadow: 0 1px 7px 0 #0E325812;
  transition: box-shadow 0.15s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 16px 0 #0E32581a;
}
/* Review Area */
.review-summary, .star-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.star-rating-summary span {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0E3258;
}
.platform-icons {
  display: flex;
  gap: 16px;
  margin: 14px 0 0 0;
}
.platform-icons img {
  width: 38px;
  height: 38px;
}
/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0 24px 0;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1.5px solid #E8EAF0;
  font-size: 1rem;
}
.pricing-table th {
  background: #0E3258;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:nth-child(odd) td {
  background: #F7F8FA;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
/* Contact / Footer */
.contact-details li, .footer-contact p {
  margin-bottom: 6px;
  color: #1A2433;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
footer {
  background: #0E3258;
  color: #fff;
  padding: 48px 0 18px;
  margin-top: 48px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border 0.2s;
}
.footer-nav a:hover, .footer-nav a:active {
  color: #F4952A;
  border-bottom: 1px solid #F4952A;
}
.footer-contact {
  font-size: 0.98rem;
  color: #E8EAF0;
  word-break: break-word;
}
.footer-contact a {
  color: #E8EAF0;
  text-decoration: underline;
}
/* THANK YOU SECTION */
.thank-you-section {
  background: #E8EAF0;
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  margin: 60px 0 0 0;
  box-shadow: 0 4px 32px 0 #0E32581c;
}
.thank-you-section .btn-primary {
  margin-top: 26px;
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #0E3258;
  box-shadow: 0 -6px 32px #1A243344;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  gap: 28px;
  transition: transform 0.46s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #0E3258;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 20px;
}
.cookie-banner button {
  margin: 0 6px;
  min-width: 110px;
  padding: 9px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #0E3258;
  background: #fff;
  color: #0E3258;
  transition: background 0.19s, color 0.19s, border 0.18s;
}
.cookie-banner button.accept {
  background: #0E3258;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #0E3258;
  border: 2px solid #F4952A;
}
.cookie-banner button.settings {
  background: #E8EAF0;
  border: 2px solid #E8EAF0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F4952A;
  color: #fff;
  border-color: #F4952A;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #0e3258cc;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 #0E32588c;
  padding: 32px 24px 18px 24px;
  max-width: 420px;
  width: 96vw;
  font-size: 1rem;
  color: #0E3258;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #0E3258;
  font-weight: 800;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1A2433;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F4952A;
}
.cookie-category .essential {
  color: #0E3258;
  font-style: italic;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #F4952A;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  border: none;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #0E3258;
  color: #fff;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .modal-btns button {
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
}
/* ANGULAR (GEOMETRIC) STYLE EXTRAS */
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
}
.card, .testimonial-card, .faq-item, .hero,
.section, .services ul li, .features li {
  border-radius: 16px 16px 7px 7px;
}
/* Animations */
@keyframes slideInTop {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero .content-wrapper, .section, .card, .testimonial-card {
  animation: slideInTop 0.6s cubic-bezier(.66,1.45,.34,1) both;
}
.btn-primary, .btn-secondary {
  animation: fadeIn 0.5s 0.16s both;
}
/* Responsive Styles */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .hero {
    padding: 40px 0 24px;
  }
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 20px;
  }
  header .container {
    padding: 14px 10px 10px 10px;
  }
  .hero {
    padding: 18vw 0 10vw;
  }
  .hero .content-wrapper {
    gap: 12px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 9px;
  }
  .footer-brand img {
    width: 124px !important;
    height: auto;
  }
  .main-nav {
    display: none;
  }
}
@media (max-width: 640px) {
  .content-grid, .card-container, .platform-icons {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
  }
  .services ul, .services-overview ul, .features ul {
    gap: 12px;
  }
  .card {
    padding: 16px 8px;
  }
  .testimonial-card {
    padding: 14px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    padding: 13px 6px 17px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 18px 8px;
  }
}
@media (max-width: 520px) {
  .footer-brand { margin-bottom: 18px; }
  .cookie-modal { padding: 12px 3vw 10px 3vw; }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .thank-you-section {
    padding: 12px 2vw;
    margin: 24px 0 0 0;
  }
}
/* FLEXBOX DIRECTION UTILS FOR MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .features, .services ul, .card-container, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact {
    margin-top: 12px;
  }
}
/* Utility Classes */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
/* Hide visually, keep for a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
input[type="checkbox"]:disabled, input[type="radio"]:disabled {
  opacity: 0.64;
}
/* Accessibility outline fixes */
:focus {
  outline: 2px solid #F4952A;
  outline-offset: 2px;
}
/* Prevent content overlap */
main {
  padding-bottom: 110px;
}
body { min-height: 100vh; }
