/* =============================
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F4F7FB;
  color: #19324D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
/* =============================
   CUSTOM VARIABLES & COLORS
============================= */
:root {
  --color-primary: #19324D;
  --color-secondary: #F4F7FB;
  --color-accent: #D1A852;
  --color-neutral: #22252A;
  --color-heading: #19324D;
  --color-subheading: #D1A852;
  --color-footer-bg: #181F2A;
  --color-footer-text: #F4F7FB;
  --color-disabled: #E7EDF4;
  --color-error: #FF477E;
  --shadow-card: 0 4px 32px 0 rgba(25, 50, 77, 0.10);
  --shadow-lg: 0 8px 32px 0 rgba(25, 50, 77, 0.20);
  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --gradient-hero:linear-gradient(120deg, #1B2845 0%, #304A74 100%);
  --gradient-accent:linear-gradient(90deg,#D1A852 10%, #FFE6AF 100%);
  --neon-accent: #FFD700;
}

/* Fallbacks for custom vars, if any older browser support needed */

/* =============================
   TYPOGRAPHY & HEADINGS
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-heading);
}
h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-subheading);
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-heading);
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, li, table, th, td {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1rem;
}
p.lead {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  font-weight: 400;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 1rem;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
  color: var(--color-accent);
}
.small {
  font-size: 0.95rem;
}

/* =============================
   LAYOUT CONTAINERS & SECTIONS
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F7FB;
  border-radius: 24px;
}

/* Content Wrapper for General Flex Layouts */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}
.text-section {
  padding: 32px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.cta-section {
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
  }
  .text-section, .cta-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}

/* =============================
   NAVIGATION & HEADER
============================= */
header {
  width: 100%;
  background: var(--gradient-hero);
  box-shadow: 0 2px 16px 0 rgba(25,50,77,0.10);
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: 78px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 16px 20px 12px 20px;
}
.logo {
  margin-right: 32px;
}
.main-nav a {
  color: #F4F7FB;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(209,168,82, 0.16);
  color: var(--neon-accent);
}
.main-nav .cta.primary {
  background: linear-gradient(95deg, #D1A852 70%, #FFD700 100%);
  color: #19324D;
  font-family: var(--font-display);
  box-shadow: 0 4px 16px 0 rgba(209,168,82, 0.10);
  font-size: 1.08rem;
  border-radius: 10px;
  padding: 10px 20px;
  margin-left: auto;
  transition: box-shadow 0.18s, color 0.18s,
              background 0.18s;
}
.main-nav .cta.primary:hover, 
.main-nav .cta.primary:focus {
  color: #1B2845;
  background: linear-gradient(95deg, #FFD700 60%, #D1A852 100%);
  box-shadow: 0 8px 24px 0 rgba(209,168,82,0.32);
}

/* =============================
   MOBILE MENU
============================= */
.mobile-menu-toggle {
  display: block;
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  font-size: 2.2rem;
  color: #FFD700;
  border: none;
  z-index: 30;
  cursor: pointer;
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: rgba(209,168,82, 0.12);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,50,77,0.96);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.28s cubic-bezier(.59,.21,.12,1),
              transform 0.38s cubic-bezier(.56,0,.22,1.01);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FFD700;
  font-size: 2.1rem;
  position: absolute;
  top: 20px;
  right: 22px;
  border: none;
  z-index: 5;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 40px;
  transition: background 0.24s;
}
.mobile-menu-close:hover {
  background: rgba(255,215,0,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 120px 40px 20px 40px;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  font-family: var(--font-body);
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,215,0,0.12);
  color: #FFD700;
}

@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
}

/* =============================
   HERO, FEATURES, CARD GRIDS
============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  padding: 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 26px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.16s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 36px 0 #D1A85244;
  transform: translateY(-2px) scale(1.018);
}
.feature-grid li img {
  width: 40px; height: 40px; margin-bottom: 4px;
  filter: drop-shadow(0 0 4px #D1A85220);
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* =============================
   SERVICES CARDS
============================= */
.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  min-height: 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 20px 24px;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-accent);
  transition: box-shadow 0.22s, border-color 0.24s;
}
.service-card img {
  width: 36px; height: 36px;
  margin-bottom: 10px;
  filter: brightness(1.11) drop-shadow(0 0 4px #FFD70080);
}
.service-card .price {
  display: inline-block;
  margin-top: 8px;
  background: var(--gradient-accent);
  color: #19324D;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: 4px 16px;
  box-shadow: 0 2px 12px #FFD70020;
  font-size: 1rem;
}
.service-card:hover {
  border-color: #FFD700;
  box-shadow: 0 10px 34px #FFD70028;
}

/* =============================
   TEAM & PROFILE CARDS
============================= */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.team-member-profile {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px 18px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border-top: 4px solid var(--color-accent);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.team-member-profile img {
  width: 38px; height: 38px;
  border-radius: 50%;
  margin-bottom: 6px;
  background: #19324D08;
}
.team-member-profile h3 {
  font-size: 1.15rem;
}
.team-member-profile ul {
  margin-top: 10px;
}
.team-member-profile:hover {
  box-shadow: 0 10px 34px #FFD70018;
  border-color: #FFD700;
}

/* =============================
   TESTIMONIALS, RATINGS
============================= */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px #19324d10;
  border-left: 4px solid var(--color-accent);
  font-family: var(--font-body);
  color: #1B2845;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.23s;
}
.testimonial-card p {
  color: #1B2845;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-meta {
  color: #7D8899;
  font-size: 0.98rem;
  font-style: normal;
}
.testimonial-card:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 24px #FFD70022;
}
.rating-summary {
  margin-top: 36px;
  padding: 22px 18px;
  border-radius: 12px;
  background: #fffdeb;
  box-shadow: 0 2px 8px #FFD70033;
  color: #1B2845;
  font-size: 1.02rem;
}
.rating-summary ul {
  margin: 10px 0 0 0;
  list-style: disc;
  padding-left: 18px;
}
.rating-summary li {
  margin-bottom: 6px;
}

/* =============================
   CTA BUTTONS & LINKS
============================= */
.cta, .cta.primary {
  display: inline-block;
  background: linear-gradient(100deg, #D1A852 80%, #FFD700 100%);
  color: #1B2845;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 32px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px 0 rgba(209,168,82, 0.14);
  transition: background 0.19s, color 0.17s, 
    transform 0.15s, box-shadow 0.19s;
  border: none;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus, .cta:hover, .cta:focus {
  background: linear-gradient(100deg, #FFD700 60%, #D1A852 100%);
  color: #19324D;
  box-shadow: 0 8px 28px #FFD70033;
  transform: translateY(-2px) scale(1.045);
}
/* =============================
   PRICING TABLE
============================= */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
  overflow: hidden;
  font-size: 1rem;
  color: #1B2845;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}
.pricing-table th {
  background: #D1A852;
  color: #1B2845;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: #F4F7FB;
}
.pricing-table tr:nth-child(odd) td {
  background: #fff;
}
.pricing-table td {
  border-bottom: 1px solid #E7EDF4;
  font-family: var(--font-body);
}

/* =============================
   CONTACT PAGE
============================= */
.contact-info {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px 14px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.map-location {
  background: #F4F7FB;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.map-location img {
  display: block;
  margin: 0 auto 10px auto;
  width: 70px; height: 70px;
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 40px 0 0 0;
  margin-top: 60px;
  position: relative;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
}
.footer-content img {
  width: 54px;
  height: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: center;
}
.footer-nav a {
  color: #FFD700;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  color: #F4F7FB;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
  }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #fffbe6;
  box-shadow: 0 -4px 24px #d1a85229;
  border-top: 2px solid var(--color-accent);
  padding: 20px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: transform 0.30s cubic-bezier(.52,.13,.35,.89), opacity 0.16s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-btn, .cookie-settings-btn {
  background: linear-gradient(94deg, #D1A852 65%,#FFD700 100%);
  color: #1B2845;
  font-family: var(--font-display);
  font-weight: 500;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.17s, color 0.14s;
}
.cookie-btn.secondary {
  background: #F4F7FB;
  color: #19324D;
  border: 1px solid #D1A852;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: linear-gradient(94deg, #FFD700 65%,#D1A852 100%);
}
/* Cookie Modal for settings */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25,50,77,0.45);
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-bg.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 56%;
  transform: translate(-50%,-50%) scale(0.92);
  background: #fff;
  color: #1B2845;
  z-index: 10002;
  padding: 34px 28px 24px 28px;
  border-radius: 18px;
  box-shadow: 0 8px 32px #19324D28;
  max-width: 98vw;
  min-width: 320px;
  max-width: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.2s;
}
.cookie-modal.show {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.0);
  pointer-events: all;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: var(--color-accent);
}
.cookie-modal-category {
  margin-bottom: 18px;
}
.cookie-modal-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.switch {
  display: inline-block;
  width: 40px;
  height: 22px;
  position: relative;
}
.switch input {
  opacity: 0; width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E7EDF4;
  border-radius: 22px;
  transition: background 0.19s;
}
.switch input:checked + .slider {
  background: linear-gradient(96deg,#D1A852 65%,#FFD700 100%);
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 2px 6px #D1A85230;
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 18px;
}
.cookie-modal-btns button {
  font-size: 1rem;
  background: linear-gradient(95deg,#D1A852 60%,#FFD700 100%);
  color: #19324D;
  border-radius: 7px;
  border: none;
  padding: 8px 20px;  
  font-family: var(--font-display);
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-btns button:hover {
  background: linear-gradient(95deg,#FFD700 60%,#D1A852 100%); color: #1B2845;
}

/* =============================
   ALIGNMENT / FLEX PATTERNS
============================= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =============================
   RESPONSIVE BREAKPOINTS
============================= */
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .feature-grid, .services-overview, .card-container, .content-grid, .team-members, .testimonial-slider, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2.08rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 5px; padding-right: 5px; }
  section { padding: 30px 5px; }
  .content-wrapper, .content-grid, .feature-grid, .services-overview, .team-members, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid li,
  .service-card,
  .team-member-profile,
  .card {
    max-width: 100%;
    min-width: 160px;
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 9px;
    align-items: center;
  }
  .mobile-nav {
    padding-left: 24px; padding-right: 24px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .cookie-modal {
    min-width: 90vw !important;
    padding: 14px 6px 10px 11px;
  }
  .container {
    padding: 0 4px;
  }
}

/* =============================
   MICRO-INTERACTIONS & ANIMATIONS
============================= */
.cta, .cta.primary, .main-nav a, .feature-grid li, .service-card, .team-member-profile, .testimonial-card, .cookie-btn, .cookie-modal-btns button {
  transition: box-shadow 0.22s, background 0.19s, color 0.16s, transform 0.10s;
}

::-webkit-scrollbar { width: 9px; background: #E7EDF4; }
::-webkit-scrollbar-thumb { background: #D1A852; border-radius: 8px; }

/* =============================
   ACCESSIBILITY
============================= */
:focus {
  outline: 2px dashed #FFD700;
  outline-offset: 2px;
}

/* =============================
   UTILITY CLASSES
============================= */
.hide { display: none !important; }

/* =============================
   END OF FILE
============================= */
