/* ===== CSS RESET & BASE STYLES ===== */
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;
  background: #EAF0F8;
  color: #1A2540;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #1A2540;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2A007;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2540;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  font-size: 1rem;
}
ul, ol { padding-left: 28px; }
li {
  margin-bottom: 8px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(26,37,64,0.06);
}

.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 rgba(26,37,64,0.09);
  padding: 30px 24px;
  min-width: 260px;
}
.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;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #EAF0F8;
  box-shadow: 0 2px 8px rgba(26,37,64,0.08);
  border-left: 5px solid #F2A007;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,37,64,0.06);
  padding: 0;
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
header img {
  height: 50px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .16s;
  color: #1A2540;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2A007;
  border-bottom: 2px solid #F2A007;
}
.btn-primary {
  background: #F2A007;
  color: #1A2540;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 99px 12px 99px 12px;
  box-shadow: 0 4px 18px rgba(26,37,64,0.08);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.18s, box-shadow 0.15s, color 0.18s;
  margin-left: 18px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A2540;
  color: #fff;
  box-shadow: 0 6px 24px rgba(34,38,61,.15);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #1A2540;
  cursor: pointer;
  z-index: 101;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2A00733;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(0.74,0.09,0.41,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 6px 24px rgba(26,37,64,0.18);
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px 20px 8px auto;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1A2540;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 14px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2A00733;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.2rem;
  margin: 24px 48px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #1A2540;
  letter-spacing: 0.07em;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2A007;
  border-color: #F2A007;
}

@media (max-width: 1024px) {
  .header .container, header .container {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    margin-left: 6px;
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    gap: 0;
  }
}

/* ===== HERO / LANDING SECTIONS ===== */
.hero {
  background: linear-gradient(118deg, #EAF0F8 70%, #F2A007 100%);
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 48px 0 42px 0;
  margin-bottom: 60px;
  border-radius: 0 0 44px 44px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 220px;
  gap: 0;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: left;
  color: #1A2540;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1A2540;
  margin-bottom: 28px;
}
.hero .btn-primary {
  margin-left: 0;
}

/* ===== FEATURE GRIDS ===== */
.features {
  background: #fff;
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 40px 12px;
  box-shadow: 0 4px 18px rgba(26,37,64,0.07);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: space-between;
}
.features .feature-grid li {
  background: #EAF0F8;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,38,61,0.10);
  padding: 28px 22px 23px 22px;
  flex: 1 1 205px;
  min-width: 205px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-left: 4px solid #F2A007;
}
.features img, .service-list img, .contact-cta img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(26,37,64,0.07);
  padding: 5px;
}
.features h3 {
  font-size: 1.07rem;
}
.features p {
  color: #232D3C;
  font-size: 1rem;
}

/* ===== ABOUT & SERVICES QUICK PREVIEW ===== */
.about-preview, .services-preview, .contact-cta {
  background: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
  box-shadow: 0 3px 15px rgba(34,38,61,0.07);
}
.about-preview ul,
.services-preview ul,
.contact-cta ul {
  margin-bottom: 20px;
}
.about-preview ul li, .services-preview ul li, .contact-cta ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* ===== SECTION LAYOUTS/GENERIC SECTION SPACING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== SERVICE-LIST ===== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 38px;
  margin-bottom: 30px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #EAF0F8;
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 200px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===== SHOP ===== */
.shop-topseller ul, .shop-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 35px;
  margin-bottom: 18px;
}
.shop-topseller ul li, .shop-overview ul li {
  background: #EAF0F8;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
}
.shop-offer-highlight {
  background: #F2A007;
  color: #1A2540;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(26,37,64,0.09);
  padding: 17px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 14px;
  margin-bottom: 14px;
}
.shop-offer-highlight h3 {
  margin-bottom: 10px;
  color: #1A2540;
}

.features-shop .trust-signals,
.service-features .trust-signals {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.trust-signals img {
  height: 46px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(26,37,64,0.07);
  padding: 7px;
}

/* ===== PRICING TABLE ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(34,38,61,0.11);
  margin: 32px 0;
}
thead {
  background: #F2A007;
  color: #1A2540;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid #EAF0F8;
}
th {
  font-size: 1.07rem;
  font-weight: 700;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials .testimonial-card {
  background: #EAF0F8;
  color: #1A2540;
  border-left: 5px solid #F2A007;
  box-shadow: 0 2px 8px rgba(26,37,64,0.10);
  margin-bottom: 24px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1A2540;
  opacity: 0.76;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(34,38,61,0.15);
}

/* ===== JOB LISTINGS AND CARDS ===== */
.job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.job-card {
  flex: 1 1 260px;
  background: #EAF0F8;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,38,61,0.09);
  padding: 24px 18px;
  margin-bottom: 20px;
  border-left: 4px solid #F2A007;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.benefits-section, .company-culture {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(26,37,64,0.07);
  padding: 24px 21px;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
footer {
  background: #1A2540;
  color: #fff;
  padding: 32px 0 16px 0;
  margin-top: 80px;
  border-radius: 34px 34px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  transition: color .16s, opacity .14s;
  padding: 7px 0 7px 0;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2A007;
  opacity: 1;
  border-bottom: 2px solid #F2A007;
}
.contact-snippet {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 300px;
}
.contact-snippet img {
  width: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.legal-links {
  font-size: 0.98rem;
  opacity: 0.87;
  margin-bottom: 13px;
}
.legal-links a {
  color: #F2A007;
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 17px;
}
.social-icons img {
  height: 32px;
  transition: filter 0.17s;
  filter: grayscale(0.2) brightness(1.1);
}
.social-icons img:hover, .social-icons img:focus {
  filter: drop-shadow(0 4px 8px #F2A00745) brightness(1.2) grayscale(0);
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -1px 18px #1A25404D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  z-index: 9000;
  font-size: 1rem;
  gap: 24px;
  animation: slideUpCookieBanner 0.4s cubic-bezier(.71,.08,.45,.93);
}
@keyframes slideUpCookieBanner {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #EAF0F8;
  color: #1A2540;
  transition: background .17s, color .20s;
}
.cookie-btn.accept {
  background: #F2A007;
  color: #1A2540;
}
.cookie-btn.reject {
  background: #D8DDE5;
  color: #1A2540;
}
.cookie-btn.settings {
  background: #1A2540;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.1);
  outline: none;
}

/* COOKIE MODAL */
#cookie-settings-modal {
  display: none;
  position: fixed;
  z-index: 9100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,37,64,0.50);
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg .19s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
#cookie-settings-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  padding: 34px 30px 22px 30px;
  border-radius: 24px;
  box-shadow: 0 6px 42px #1A254066;
  min-width: 325px;
  max-width: 98vw;
  animation: popModal .25s cubic-bezier(.67,-0.21,.32,1.22);
}
@keyframes popModal {
  from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: #EAF0F8;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 12px;
  position: relative;
  transition: background 0.13s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .toggle-slider {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #F2A007;
  position: absolute;
  left: 0; top: 0;
  transition: left 0.15s cubic-bezier(.8,0,.02,1), background 0.12s;
}
.cookie-toggle input:checked + .toggle-slider {
  left: 16px;
  background: #1A2540;
}
.cookie-setting-label {
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1A2540;
  position: absolute;
  right: 21px;
  top: 24px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F2A00733;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px){
  footer .content-wrapper {
    gap: 17px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav { gap: 10px; }
}
@media (max-width: 768px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section, section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 28px 0 23px 0;
    min-height: 260px;
    border-radius: 0 0 22px 22px;
  }
  .features {
    border-radius: 16px;
    padding: 24px 4px;
  }
  .feature-grid, .service-list, .job-listings, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    padding: 12px;
    margin-bottom: 16px;
  }
  .about-preview, .services-preview, .contact-cta {
    border-radius: 14px;
    padding: 16px 5px;
  }
  .shop-offer-highlight, .benefits-section, .company-culture {
    padding: 12px 6px;
  }
  .job-card {
    padding: 14px 7px;
  }
  .footer-nav { flex-direction: column; gap: 3px; }
  .social-icons { gap: 8px; }
  #cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 15px 7px; }
  #cookie-settings-modal .cookie-modal-content { padding: 22px 8px 13px 8px; min-width: 0; }
}

@media (max-width: 480px){
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  p, ul, li, th, td { font-size: 0.97rem; }
  .btn-primary { font-size: 0.98rem; padding: 8px 16px; }
  .contact-snippet, .footer-nav, .legal-links { font-size: 0.92rem; }
}

/* ===== UTILITY & MISC ===== */
strong, b {
  color: #1A2540;
  font-weight: 700;
}
mark {
  background: #F2A00744;
  color: #1A2540;
  border-radius: 2px;
  padding: 0 4px;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: 12px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 13px; }

/* ===== VISUAL GEOMETRIC DECORATION ===== */
.hero, .features, .about-preview, .services-preview, .contact-cta, .testimonial-card, .job-card {
  /* Geometric, angular corners and visual style */
  border-radius: 22px 44px 22px 44px;
}
.card, .benefits-section, .company-culture, .shop-offer-highlight, .shop-topseller ul li, .service-list li {
  border-radius: 18px 12px 18px 12px;
}

/* ===== FOCUS STATES ===== */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 3px solid #F2A007;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 10px;
  background: #EAF0F8;
}
::-webkit-scrollbar-thumb {
  background: #F2A007;
  border-radius: 14px;
}

/* ======= END ======= */
