/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --color-navy: #000040;
  --color-blue: #00aeff;
  --color-pink: #ff076b;
  --color-charcoal: #404040;
  --color-white: #ffffff;

  --color-primary: var(--color-blue);
  --color-primary-dark: var(--color-navy);
  --color-accent: var(--color-pink);
  --color-dark: var(--color-navy);
  --color-heading-main: var(--color-navy);
  --color-heading-small: var(--color-blue);

  --primary: var(--color-navy);
  --secondary: var(--color-blue);
  --accent: var(--color-pink);
  --green: #34a954;

  --color-gray-200: #69727d;
  --color-gray-400: #4a4a4a;

  --color-border-alt: #e0e0e0;

  --color-bg-lighter: #f6f8fa;

  --color-overlay-light: rgba(255, 255, 255, 0.88);

  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --header-height: 64px;

  --text-hero: clamp(2.6rem, 5.5vw, 4.2rem);
  --text-h2: clamp(2rem, 4.4vw, 3.4rem);
  --text-h3: clamp(1.125rem, 1.8vw, 1.5rem);
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--color-charcoal);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a,
button,
[role="button"] {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

h4 {
  font-size: var(--text-sm);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section spacing ── */
main > section + section {
  margin-top: 72px;
}

@media (max-width: 900px) {
  main > section + section {
    margin-top: 48px;
  }
}

main > section.page-section,
main > section.news-section,
main > section.faq-section {
  margin-top: 0;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: relative;
  z-index: 20;
  isolation: isolate;
  display: flex;
  background: var(--color-white);
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 16px;
}

.site-header::before,
.site-header::after,
#top::before {
  content: none;
}

.site-logo img {
  width: min(100%, 250px);
  height: auto;
  display: block;
}

.header-phone {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .site-logo img {
    width: min(100%, 200px);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--primary);
  padding: 95px 0 64px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: rgba(0, 148, 218, 0.04);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-heading-group {
  max-width: 640px;
  margin-bottom: 18px;
}

.hero-heading-alt {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(255, 7, 107, 0.32);
  animation: btnFloat 2.8s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.btn-primary:hover {
  opacity: 0.9;
  animation-play-state: paused;
  transform: translateY(-3px) translateZ(0);
  color: var(--color-white);
}

@keyframes btnFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-6px) translateZ(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 48px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-sub {
    font-size: 0.9375rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-height: none;
    object-fit: contain;
  }
  .hero-content {
    text-align: center;
  }
  .hero h1,
  .hero-sub {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
}

/* ─── Shared section layout helpers ─── */
.page-section {
  padding: 88px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(0, 148, 218, 0.1);
  border: 1px solid rgba(0, 148, 218, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-heading {
  max-width: 20ch;
  margin: 0 auto 14px;
  color: var(--color-navy);
  font-size: var(--text-h2);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-sub {
  font-size: var(--text-sm);
  color: var(--color-gray-200);
  margin: 0 0 40px;
  line-height: 1.65;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.section-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   DIFF POINTS (used in trust facts slider and how-it-works)
═══════════════════════════════════════════════════════════ */
.diff-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border-alt);
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.diff-point:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 64, 0.07);
}

.diff-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-white);
}

.diff-icon--blue {
  background: var(--color-blue);
}
.diff-icon--pink {
  background: var(--color-pink);
}
.diff-icon--green {
  background: var(--green);
}
.diff-icon--navy {
  background: var(--color-navy);
}

.diff-point h3,
.diff-point h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.diff-point p {
  font-size: var(--text-sm);
  color: var(--color-gray-200);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   JOURNEY / HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.journey-section {
  padding: 72px 0;
}

.journey-option {
  background: var(--color-white);
  border: 1px solid var(--color-border-alt);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  margin-bottom: 24px;
}
.journey-option:last-child {
  margin-bottom: 0;
}

.journey-steps {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 4px;
  gap: 0;
}

.journey-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 0 10px;
}

.j-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--color-pink);
  box-shadow: 0 4px 14px rgba(255, 7, 107, 0.15);
  position: relative;
  z-index: 1;
}
.j-num--blue {
  border-color: var(--color-blue);
  color: var(--color-blue);
  box-shadow: 0 4px 14px rgba(0, 148, 218, 0.15);
}
.j-num--green {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 4px 14px rgba(52, 169, 84, 0.15);
}

.journey-step h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 5px;
  line-height: 1.3;
}

.journey-step p {
  font-size: var(--text-xs);
  color: var(--color-gray-200);
  margin: 0;
  line-height: 1.5;
}

.j-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 12px;
  color: var(--color-blue);
  opacity: 0.7;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

.j-arrow svg {
  animation: arrowPulse 1.6s ease-in-out infinite;
}

@media (max-width: 860px) {
  .journey-section {
    padding: 52px 0;
  }
  .journey-option {
    padding: 24px 20px 28px;
  }
  .journey-step {
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  .journey-steps {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
  }

  .journey-step {
    min-width: 0;
    padding: 18px 16px;
    border: 1px solid var(--color-border-alt);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.8);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: start;
  }

  .j-num {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .journey-step h4 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    margin-bottom: 4px;
    text-align: left;
  }

  .journey-step p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.875rem;
    line-height: 1.45;
    text-align: left;
  }

  .j-arrow {
    display: flex;
    justify-content: center;
    padding: 2px 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .journey-option {
    padding: 20px 16px 22px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-accordion {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-alt);
}

.faq-item-btn {
  width: 100%;
  padding: 20px 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font: inherit;
}

.faq-item-btn h3 {
  flex: 1 1 auto;
  padding-right: 20px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-charcoal);
}

.faq-icon {
  flex-shrink: 0;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-white);
}

.faq-panel {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  margin: 0 -24px;
  padding: 0 24px;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: max-height, opacity, transform;
  box-sizing: border-box;
}

.faq-item.open .faq-panel {
  opacity: 1;
  transform: translateY(0);
}
.faq-panel-inner {
  padding: 24px 0 40px;
}

.faq-panel p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-gray-200);
}

@media (max-width: 900px) {
  .faq-icon {
    height: 44px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TEXT REVIEW SLIDER (used by facts slider)
═══════════════════════════════════════════════════════════ */
.reviews-slider--text {
  position: relative;
  margin-top: 40px;
}
.reviews-slider--text .reviews-viewport {
  overflow: hidden;
  cursor: grab;
}
.reviews-slider--text.is-dragging .reviews-viewport {
  cursor: grabbing;
}
.reviews-slider--text .reviews-track {
  display: flex;
  transition: transform 0.42s ease;
  will-change: transform;
}
.reviews-slider--text .review-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.reviews-slider--text .reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 64, 0.18);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.reviews-slider--text .reviews-nav:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.reviews-slider--text .reviews-nav.prev {
  left: 0;
}
.reviews-slider--text .reviews-nav.next {
  right: 0;
}
.reviews-slider--text .reviews-nav::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
}
.reviews-slider--text .reviews-nav.prev::before {
  transform: rotate(-135deg) translateX(-2px);
}
.reviews-slider--text .reviews-nav.next::before {
  transform: rotate(45deg) translateX(-2px);
}
.reviews-slider--text .reviews-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.reviews-slider--text .reviews-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 64, 0.18);
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.reviews-slider--text .reviews-dot.active {
  background: var(--color-blue);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .reviews-slider--text .reviews-nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════════════════════ */
.news-section,
.faq-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px 0;
}

.news-section > *,
.faq-section > * {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.news-section .review-card {
  padding: 0 2px;
}

.news-section .review-card-inner {
  max-width: 980px;
  margin: 0 auto;
}

.review-card-title,
.news-section .review-card-title strong,
.news-section .review-card-text strong {
  font-weight: 900;
}

.review-card-title {
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .page-section,
  .news-section,
  .faq-section {
    padding: 72px 0;
  }

  .news-section > *,
  .faq-section > * {
    padding-right: 16px;
    padding-left: 16px;
  }

  .news-section .review-card-inner {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   START TODAY (FINAL CTA)
═══════════════════════════════════════════════════════════ */
.start-today-section {
  max-width: 1280px;
  margin: 30px auto 64px;
  padding: 24px;
}

.start-today-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.start-today-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 0, 64, 0.9), rgba(0, 148, 218, 0.82)),
    url(../images/img-11.jpg) center / cover no-repeat;
  box-shadow: 0 24px 54px rgba(0, 0, 64, 0.18);
}

.start-today-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 64, 0.15),
    rgba(0, 0, 64, 0.04)
  );
  pointer-events: none;
}

.start-today-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 56px 52px;
}

.start-today-section h3 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.2px;
}

.start-today-body {
  text-align: left;
}

.start-today-section .start-today-desc {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.8;
}

.start-today-section .start-today-desc a {
  color: var(--color-white);
  text-decoration: underline;
}

.start-today-cta-wrap {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.start-today-cta {
  display: inline-flex;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--color-pink);
  box-shadow: 0 10px 24px rgba(255, 7, 107, 0.24);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.start-today-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 7, 107, 0.28);
}

@media (max-width: 1100px) {
  .start-today-inner {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .start-today-section {
    margin-bottom: 56px;
    padding: 20px 16px;
  }

  .start-today-card {
    border-radius: 22px;
  }

  .start-today-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 24px;
  }

  .start-today-body {
    margin-top: 16px;
    text-align: center;
  }

  .start-today-section .start-today-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .start-today-cta-wrap {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .start-today-content {
    padding: 28px 20px;
  }

  .start-today-section h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .start-today-section .start-today-desc {
    font-size: 0.92rem;
  }

  .start-today-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════════════════════ */
#trust {
  position: relative;
  z-index: 1;
}

@media (min-width: 901px) {
  #trust {
    padding-bottom: 72px;
  }
}

@media (max-width: 900px) {
  .section-heading {
    max-width: 14ch;
  }

  #trust {
    padding-bottom: 52px;
  }
}

@media (max-width: 640px) {
  .section-header.centered {
    margin-bottom: 32px;
  }

  .section-heading {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  #trust .section-header.centered,
  #trust .section-heading,
  #trust .section-label,
  #trust .section-sub {
    text-align: center;
  }

  #trust .two-col {
    gap: 24px;
  }
}
/* ═══════════════════════════════════════════════════════════
   SECTION BACKGROUND OVERRIDES
   #how-it-works, #social-proof, #contact → white background
═══════════════════════════════════════════════════════════ */
#trust,
#models,
#faq {
  background: #ececec;
}