/* ==== 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #15191e;
  color: #ebecee;
  font-family: 'Arial', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #E6B6B8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffffff;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  padding: 0;
}

/* ==== ROOT & BRAND COLORS ==== */
:root {
  --color-primary: #16384B;
  --color-secondary: #E6B6B8;
  --color-metal: #7a868c;
  --color-dark-bg: #15191e;
  --color-card-bg: #22262B;
  --color-accent: #FFFFFF;
  --color-border: #30363b;
  --color-success: #47db9c;
  --shadow-card: 0 2px 8px rgba(22, 56, 75, 0.15);
  --shadow-metallic: 0 4px 14px rgba(122, 134, 140, 0.18);
  --radius-base: 10px;
  --radius-pill: 999px;
  --transition: 0.2s cubic-bezier(.51,.13,.43,1.31);
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E6B6B8;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}
h4 {
  font-size: 1.125rem;
  color: #b7babd;
}
p, li, td, th, span, label {
  font-family: Arial, sans-serif;
  color: #ebecee;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  letter-spacing: .5px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
  position: relative;
}
.text-section li::before {
  content: '\2022';
  color: var(--color-metal);
  margin-right: 10px;
  font-size: 1rem;
  line-height: 1;
}

/* ==== GENERAL LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==== FLEXBOX GRIDS ==== */
.feature-grid, .feature-list, .service-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div, .service-list > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: var(--shadow-metallic);
  border-color: var(--color-secondary);
  z-index: 2;
}
.feature-list {
  gap: 20px;
  flex-direction: column;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-card-bg);
  padding: 12px 18px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  border: 1px solid var(--color-border);
}
.feature-list img {
  width: 32px;
  height: 32px;
  filter: grayscale(60%) brightness(1.5);
}

.service-list > li, .service-list > div {
  margin-bottom: 20px;
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f4f4f4;
  color: #1c2225;
  padding: 20px 24px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  border: 1.5px solid #e6e7e9;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  color: #1c2225;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #353e48;
  font-size: 1rem;
}

.cta {
  background: linear-gradient(100deg, #16384b 70%, #31343a 100%);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  margin-bottom: 0;
}
.cta h2 {
  color: var(--color-secondary);
}

.notice {
  margin-top: 18px;
  background: #272d34;
  color: #fff;
  padding: 14px 18px;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-base);
  font-size: 1rem;
}

/* ==== BUTTONS ==== */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition); 
  box-shadow: 0 1px 6px rgba(22, 56, 75, 0.08);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
  margin-right: 12px;
}
.button-primary {
  background: linear-gradient(90deg, #16384B, #23495e);
  color: #fff;
  border: 2px solid #16384B;
}
.button-primary:hover, .button-primary:focus {
  background: #E6B6B8;
  color: #16384B;
  border-color: #E6B6B8;
  box-shadow: 0 4px 16px #E6B6B833;
}
.button-secondary {
  background: #fff;
  color: #16384B;
  border: 2px solid #E6B6B8;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E6B6B8;
  color: #16384B;
  border-color: #E6B6B8;
  box-shadow: 0 3px 10px #e6b6b875;
}
.button-primary:active, .button-secondary:active {
  transform: translateY(2px) scale(0.98);
}

/* ==== NAVIGATION ==== */
header {
  background: #171d22;
  box-shadow: 0 2px 12px rgba(12,23,31,0.10);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.025rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: none;
  justify-content: flex-start;
}
.main-nav a {
  padding: 8px 4px;
  color: #e6e7e9;
  border-radius: 3px;
  transition: color .18s, background .18s;
}
.main-nav a.button-primary {
  margin-left: 24px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #22252e;
  color: #E6B6B8;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 18px;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 24px;
  background: #22272c;
  color: #E6B6B8;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 102;
  border: none;
  box-shadow: 0 1px 4px rgba(14,20,24,0.15);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E6B6B8;
  color: #16384B;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181c23;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  padding: 28px 24px 24px 24px;
  transform: translateX(-110vw);
  transition: transform .4s cubic-bezier(.45,.85,.38,1.19);
  box-shadow: 4px 0 36px rgba(22, 56, 75, 0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  color: #E6B6B8;
  border: none;
  padding: 4px 8px;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6B6B8;
  color: #16384B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 14px 0;
  color: #E6B6B8;
  border-bottom: 1px solid #2a313a;
  transition: color .18s, background .18s;
  min-width: 70vw;
  border-radius: 0 6px 6px 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6B6B8;
  color: #16384B;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    padding: 12px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 950px) {
  .main-nav a:not(:first-child):not(.button-primary) {
    display: none;
  }
  .main-nav a.button-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO / LANDING ==== */
.hero {
  background: linear-gradient(80deg, #222930 60%, #16384B 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-metallic);
}
.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 1.5px;
}
.hero p {
  color: #e0e3e6;
  font-size: 1.15rem;
  max-width: 530px;
}
.hero .button-primary {
  margin-top: 24px;
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
  margin-bottom: 36px;
  overflow: auto;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 10px;
  text-align: left;
}
.pricing-table th {
  background: #16384B;
  color: #E6B6B8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 800;
  letter-spacing: .5px;
}
.pricing-table td {
  border-top: 1px solid var(--color-border);
  background: #22262B;
  color: #fff;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
.faq-item {
  background: var(--color-card-bg);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
}
.faq-item h2 {
  color: #E6B6B8;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: #e7eaee;
  font-size: 1.07rem;
}

/* ==== PROCESS STEPS (Services) ==== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.process-steps li {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 180px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-steps h3 {
  font-size: 1.15rem;
  color: #E6B6B8;
}

/* ==== FOOTER ==== */
footer {
  background: #191e23;
  padding: 28px 0 8px 0;
  box-shadow: 0 -2px 16px #0f1114cc;
  border-top: 2px solid #2c3237;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #e7eaed;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
  padding: 6px 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E6B6B8;
}
.footer-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c4c5c7;
  margin-top: 8px;
  gap: 8px;
  font-size: .99rem;
}
.footer-address img {
  width: 38px;
  margin-bottom: 6px;
}
.footer-address a {
  color: #E6B6B8;
  font-weight: 600;
  text-decoration: underline;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #31343a;
  color: #fff;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -4px 18px rgba(22,54,75,0.14);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.01rem;
  animation: cookieBannerSlideIn .7s cubic-bezier(.41,.51,.48,1.20);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(96px); opacity:0; }
  60% { transform: translateY(-8px); }
  90% { transform: translateY(0); }
  100% { opacity:1; }
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .button-accept {
  background: #47db9c;
  color: #16384B;
  border: none;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  margin-right: 5px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-banner .button-accept:hover {
  background: #27bb77;
  color: #fff;
}
.cookie-banner .button-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  cursor: pointer;
  transition: background .20s, color .20s, border-color .20s;
  margin-right: 4px;
}
.cookie-banner .button-reject:hover {
  background: #E6B6B8;
  color: #16384B;
  border-color: #E6B6B8;
}
.cookie-banner .button-settings {
  background: #E6B6B8;
  color: #16384B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  margin-right: 4px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-banner .button-settings:hover {
  background: #fff;
  color: #15191e;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,37,45,0.80);
  z-index: 2111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #22262B;
  border-radius: var(--radius-base);
  box-shadow: 0 8px 36px rgba(22,56,75,0.36);
  padding: 34px 24px 26px 24px;
  max-width: 440px;
  width: 94%;
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 2112;
  animation: modalSlideIn .4s cubic-bezier(.17,.57,.42,1.11);
}
@keyframes modalSlideIn {
  from { transform: translateY(64px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: #E6B6B8;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-family: Arial, sans-serif;
  color: #fff;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E6B6B8;
  border-radius: 20px;
  position: relative;
  margin-right: 12px;
  outline: none;
  cursor: pointer;
  transition: background .15s;
  border: none;
}
.cookie-toggle:checked {
  background: #47db9c;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22262B;
  transition: transform .18s;
}
.cookie-toggle:checked::before {
  transform: translateX(18px);
  background: #fff;
}
.cookie-category-always {
  color: #8bb99c;
  font-size: .99rem;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* ==== RESPONSIVE & LAYOUT ADJUSTMENTS ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid > div, .service-list > div, .process-steps li {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonial-slider, .content-grid, .process-steps {
    gap: 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 190px;
    flex: 1 1 190px;
  }
  .feature-grid > div, .service-list > div, .process-steps li {
    min-width: 140px;
    padding: 18px 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .section, section {
    padding: 22px 6px;
    margin-bottom: 34px;
  }
  .content-wrapper, .text-section {
    gap: 10px;
  }
  .feature-grid, .service-list, .testimonial-slider, .content-grid, .process-steps {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    margin-bottom: 18px;
    padding: 16px 11px;
  }
  .card, .feature-grid > div, .service-list > div, .process-steps li {
    margin-bottom: 16px;
    min-width: unset;
    max-width: unset;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
  }
  .footer-address {
    font-size: 0.95rem;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 40px;
  }
  .main-nav a.button-primary {
    display: none;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 14px;
  }
  .hero, .cta {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .container {
    padding: 0 4px;
  }
  .footer-address {
    font-size: 0.89rem;
  }
}

/* ==== MISC UTILS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-base);
  border: 1.5px solid var(--color-border);
  padding: 20px 18px 18px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  padding: 18px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
}

/* === Micro-interactions & transitions === */
a, button, .card, .testimonial-card, .feature-grid > div, .service-list > div {
  transition: color .18s, background .18s, box-shadow .22s, border-color .20s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 6px 28px #E6B6B833, 0 2px 6px #16384B22;
  border-color: #E6B6B8;
  z-index: 3;
}

/* ==== Accessibility focus styles ==== */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #E6B6B8;
  outline-offset: 2px;
}

/* ==== Hide native spinner for number inputs (safety) ==== */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ==== Scrollbar Styling (Webkit) ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #181c23;
}
::-webkit-scrollbar-thumb {
  background: #22262B;
  border-radius: 7px;
}

/* ==== End ==== */
