/* Vital Web Design R7 simplified presentation preview */
.simplified-home {
  --r7-ink: #21172a;
  --r7-plum: #2d1848;
  --r7-purple: #5a3a8d;
  --r7-aqua: #278985;
  --r7-paper: #fbfafc;
  --r7-soft: #f4f1f7;
  --r7-line: #ded7e7;
  --r7-muted: #62596b;
  background: #fff;
  color: var(--r7-ink);
}

.simplified-home section { padding: 92px 0; }
.simplified-home h1,
.simplified-home h2,
.simplified-home h3 { letter-spacing: -.035em; }
.simplified-home h2 { font-size: clamp(2.15rem, 4vw, 3.75rem); line-height: 1.04; }
.simplified-home h3 { font-size: 1.3rem; }

.r7-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: #fff;
  border: 2px solid var(--r7-plum);
  color: var(--r7-plum);
  padding: 10px 14px;
  font-weight: 800;
}
.r7-skip-link:focus { transform: translateY(0); }

.r7-offer-bar {
  background: var(--r7-plum);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}
.r7-offer-bar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.r7-offer-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.r7-header .nav-wrap { min-height: 78px; }
.r7-header .brand img { width: 176px; }
.r7-header .site-nav a { border-radius: 8px; }
.r7-header .site-nav .nav-cta { border-radius: 10px; }

.r7-hero {
  padding: 82px 0 76px !important;
  background: linear-gradient(180deg, #fbf9fd 0%, #fff 78%);
  border-bottom: 1px solid var(--r7-line);
}
.r7-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
}
.r7-hero-copy { max-width: 650px; }
.r7-kicker {
  margin: 0 0 18px;
  color: var(--r7-purple);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.r7-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--r7-plum);
  font-size: clamp(3rem, 4.4vw, 4.5rem);
  line-height: 1.1;
}
.r7-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--r7-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.r7-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 32px; }
.r7-actions .btn,
.r7-final-inner .btn { border-radius: 10px; padding: 14px 20px; }
.r7-text-link,
.r7-route-link { color: var(--r7-plum); font-weight: 800; text-decoration: underline; text-decoration-color: #b8a8ca; text-underline-offset: 5px; }
.r7-proof-list {
  display: flex;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--r7-line);
  list-style: none;
  color: var(--r7-muted);
  font-size: .9rem;
  font-weight: 700;
}
.r7-proof-list li::before { content: "✓"; margin-right: 8px; color: var(--r7-aqua); }
.r7-hero-visual { margin: 0; }
.r7-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(45, 24, 72, .13);
}
.r7-hero-visual figcaption {
  margin: 14px 0 0;
  color: var(--r7-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.r7-choice-section { background: #fff; }
.r7-section-heading { max-width: 780px; margin-bottom: 58px; }
.r7-section-heading h2,
.r7-final-inner h2 { margin: 0; color: var(--r7-plum); }
.r7-section-heading > p:last-child { max-width: 640px; margin: 20px 0 0; color: var(--r7-muted); font-size: 1.05rem; }
.r7-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(10px, 1.1vw, 16px);
  align-items: stretch;
}
.r7-route {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  padding: 38px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ded2ec;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(71, 38, 102, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.r7-route::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--r7-route-gradient);
  opacity: .68;
  pointer-events: none;
  transition: opacity .22s ease;
}
.r7-route > * { position: relative; z-index: 1; }
.r7-route--new { --r7-route-gradient: linear-gradient(135deg, #ffffff 0%, #fbf8ff 42%, #eadcf8 100%); }
.r7-route--revamp { --r7-route-gradient: linear-gradient(225deg, #ffffff 0%, #fbf8ff 42%, #eadcf8 100%); }
.r7-route:hover { transform: translateY(-3px); border-color: #b78bd8; box-shadow: 0 20px 44px rgba(105, 61, 146, .22), 0 0 0 1px rgba(126, 78, 168, .1); }
.r7-route:is(:hover, :focus-visible)::before { opacity: 1; }
.r7-route:focus-visible { outline: 3px solid #7542a3; outline-offset: 4px; box-shadow: 0 20px 44px rgba(105, 61, 146, .22); }
.r7-route-or {
  align-self: center;
  display: grid;
  place-items: center;
  width: clamp(68px, 5.5vw, 80px);
  height: clamp(68px, 5.5vw, 80px);
  border: 1px solid #c7a9df;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 10%, #f0e4fa 100%);
  box-shadow: 0 12px 28px rgba(96, 53, 135, .16);
  color: #63318f;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .11em;
  pointer-events: none;
}
.r7-route h3 { margin: 0 0 12px; color: var(--r7-plum); font-size: 1.75rem; }
.r7-route p { color: var(--r7-muted); }
.r7-route ul { margin: 23px 0 28px; padding: 0; list-style: none; }
.r7-route li { margin: 10px 0; padding-left: 19px; position: relative; color: var(--r7-ink); }
.r7-route li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--r7-aqua); }

.r7-final-section { background: #fff; }
.r7-final-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: 56px 0; border-block: 1px solid var(--r7-line); }
.r7-final-inner h2 { max-width: 820px; }

.r7-footer { padding: 56px 0 24px; }
.r7-footer-grid { display: grid; grid-template-columns: 1.2fr .65fr .9fr; gap: 56px; align-items: start; }
.r7-footer .footer-logo { width: 168px; }
.r7-footer-brand p { max-width: 390px; }
.r7-footer nav a { margin: 0 0 10px; }
.r7-footer-start p { margin: 0 0 8px; }
.r7-footer-start a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.r7-footer-start a span { display: inline; margin: 0; color: inherit; }
.r7-footer-meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #d9cfe4; font-size: .82rem; }

@media (min-width: 981px) and (max-width: 1320px) {
  .r7-header .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .r7-header .site-nav a { width: auto; text-align: left; }
  .r7-header .menu-btn { display: none; }
}

@media (max-width: 980px) {
  .r7-hero-grid { grid-template-columns: 1fr; }
  .r7-hero-copy { max-width: 760px; }
  .r7-hero-visual { max-width: 760px; }
  .r7-footer-grid { grid-template-columns: 1fr 1fr; }
  .r7-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .r7-route-grid { grid-template-columns: 1fr; gap: 18px; }
  .r7-route-or {
    justify-self: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    font-size: .96rem;
  }
}

@media (max-width: 760px) {
  .simplified-home section { padding: 66px 0; }
  .r7-offer-bar .container { padding: 8px 0; flex-direction: column; gap: 2px; }
  .r7-header .nav-wrap { min-height: 68px; }
  .r7-header .site-nav a { border-radius: 8px; }
  .r7-hero { padding: 58px 0 !important; }
  .r7-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .r7-hero h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); }
  .r7-lead { font-size: 1rem; line-height: 1.7; }
  .r7-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .r7-proof-list { display: grid; gap: 10px; }
  .r7-hero-visual img { border-radius: 12px; }
  .r7-section-heading { margin-bottom: 40px; }
  .r7-route { padding: 30px; }
  .r7-final-inner { grid-template-columns: 1fr; align-items: start; padding: 42px 0; }
  .r7-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .r7-footer-brand { grid-column: auto; }
  .r7-footer-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .simplified-home *,
  .simplified-home *::before,
  .simplified-home *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .r7-route:hover { transform: none; }
}
