:root {
  --green: #062b58;
  --green-dark: #021b38;
  --teal: #08b9ad;
  --teal-dark: #087f82;
  --gold: #c89b3c;
  --cream: #f5f7fa;
  --paper: #ffffff;
  --ink: #162033;
  --muted: #667085;
  --line: #dfe5ec;
  --shadow: 0 18px 45px rgba(2, 27, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #f8fafc 520px),
    var(--cream);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 126px;
  padding: 18px clamp(18px, 5vw, 78px);
  border-bottom: 1px solid rgba(6, 43, 88, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(2, 27, 56, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}

.brand-logo {
  display: block;
  width: 310px;
  height: 88px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  background: var(--green-dark);
  padding: 3px 8px;
  mix-blend-mode: normal;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #09b6ac, #062b58);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 19px;
  height: 32px;
  border: 5px solid white;
  border-top-color: transparent;
  border-radius: 0 0 20px 20px;
}

.logo-mark::before {
  left: 13px;
  transform: rotate(-22deg);
}

.logo-mark::after {
  right: 13px;
  transform: rotate(22deg);
}

.logo-mark i {
  position: absolute;
  top: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
}

.logo-text strong,
.logo-text b {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  line-height: 0.9;
}

.logo-text strong {
  color: #062b58;
  font-size: 34px;
  font-weight: 900;
}

.logo-text b {
  margin-top: 7px;
  color: #09b6ac;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
}

.nav-menu a.active {
  color: var(--teal-dark);
}

.nav-menu a:not(.quote-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.quote-link,
.plan-body a,
.quote-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(8, 185, 173, 0.22);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.page-hero {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 82px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
    url("assets/sunset.jpeg") center / cover;
  color: var(--green);
  text-align: center;
}

.hero-inner {
  max-width: 980px;
}

.hero-inner p {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-inner h1 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  text-shadow: none;
}

.hero-inner span {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  color: var(--muted);
}

.intro {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 18px 42px;
  text-align: center;
}

.intro h2,
.products h2,
.quote-section h2 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

.intro p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 78px) 82px;
}

.plan-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.plan-head {
  min-height: 168px;
  padding: 28px 24px;
  background: var(--green);
  color: white;
  text-align: center;
}

.plan-head h3 {
  margin: 0 0 12px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.plan-head p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.plan-head strong {
  display: block;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 28px;
}

.bronze .plan-head {
  background: #7a4c28;
}

.bronze-plus .plan-head {
  background: #0a5b3f;
}

.dignified .plan-head {
  background: #406246;
}

.silver .plan-head {
  background: #6c737b;
}

.gold .plan-head {
  background: #9b7625;
}

.plan-image {
  min-height: 185px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("assets/flower-candle.jpeg") center / cover;
}

.plan-image span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.plan-body {
  padding: 26px;
}

.plan-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-body li {
  position: relative;
  padding-left: 22px;
  color: #4d4d4d;
  line-height: 1.45;
}

.plan-body li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-body h4 {
  margin: 24px 0 10px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
}

.plan-body a {
  margin-top: 26px;
  width: 100%;
}

.products,
.quote-section {
  padding: 70px clamp(18px, 5vw, 78px);
  background: var(--paper);
  text-align: center;
}

.products div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.products article {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 76px clamp(18px, 5vw, 78px);
  background: white;
}

.image-story img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-story h2 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.image-story p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 78px) 76px;
  background: white;
}

.photo-grid img,
.wide-image img,
.contact-layout img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-grid img {
  height: 260px;
}

.wide-image {
  padding: 0 clamp(18px, 5vw, 78px) 54px;
  background: white;
}

.wide-image img {
  height: min(520px, 52vw);
  object-position: center;
}

.product-images article {
  overflow: hidden;
  display: grid;
  min-height: 260px;
  padding: 0;
  place-items: stretch;
}

.product-images article img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.product-images article span {
  display: grid;
  place-items: center;
  padding: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 76px clamp(18px, 5vw, 78px);
  background: white;
}

.contact-layout .content-page {
  width: 100%;
  padding: 0;
}

.contact-layout img {
  min-height: 360px;
}

.home-links a {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 76px 18px;
}

.content-page h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
}

.content-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.payment-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(2, 27, 56, 0.06);
}

.payment-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
}

.about-hero {
  min-height: 460px;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 78px);
  background: white;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-feature h2 {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.about-feature p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.about-feature aside {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.about-feature aside strong,
.about-feature aside span {
  display: block;
}

.about-feature aside strong {
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.about-feature aside span {
  margin: 16px 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 78px) 86px;
  background: white;
}

.about-values article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
}

.about-values span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.core-services,
.detailed-plans,
.support-plans,
.why-deni {
  padding: 76px clamp(18px, 5vw, 78px);
}

.core-services {
  background: var(--paper);
  text-align: center;
}

.core-services h2,
.support-plans h2,
.why-deni h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

.core-services div,
.why-deni div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.core-services article,
.why-deni article {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  text-align: center;
}

.detailed-plans {
  display: grid;
  gap: 36px;
  background:
    linear-gradient(180deg, rgba(8, 185, 173, 0.06), transparent 360px),
    var(--cream);
}

.plan-tools {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 520px);
  gap: 24px;
  align-items: end;
  padding: 52px clamp(18px, 5vw, 78px);
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-tools h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
}

.plan-tools p {
  margin: 0;
  color: var(--muted);
}

.plan-tools label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.detail-plan {
  overflow: hidden;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.detail-plan header {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px;
  background: var(--green);
  color: white;
}

.detail-plan header span {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 185, 173, 0.16);
  color: var(--teal);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.detail-plan h2,
.detail-plan h3,
.detail-plan h4 {
  font-family: Montserrat, Arial, sans-serif;
}

.detail-plan h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.detail-plan header p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.detail-plan header strong {
  color: var(--teal);
}

.detail-plan > p,
.detail-plan > h3,
.detail-plan .table-grid,
.detail-plan > a {
  margin-left: 32px;
  margin-right: 32px;
}

.detail-plan > p {
  max-width: 1040px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-plan > h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--green);
}

.best-for {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: #eefbfa;
  color: var(--ink) !important;
  font-weight: 700;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.table-grid > div {
  min-width: 0;
}

.table-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
}

table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(2, 27, 56, 0.06);
  font-size: 14px;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--green);
  color: white;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
}

tr:nth-child(even) td {
  background: #f8fafc;
}

.detail-plan > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.grace header {
  background: linear-gradient(135deg, #6a4628, var(--green-dark));
}

.harmony header {
  background: linear-gradient(135deg, var(--green), var(--teal-dark));
}

.legacy header {
  background: linear-gradient(135deg, #395b4c, var(--green-dark));
}

.royal header {
  background: linear-gradient(135deg, #805f21, var(--green-dark));
}

.prestige header {
  background: linear-gradient(135deg, #111827, var(--green-dark));
}

.support-plans {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: 30px;
  background: var(--paper);
}

.support-plans > div:first-child {
  align-self: center;
}

.support-plans p {
  color: var(--muted);
  line-height: 1.8;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 10px 26px rgba(2, 27, 56, 0.06);
}

.support-grid h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
}

.support-grid strong {
  display: block;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
}

.why-deni {
  background:
    radial-gradient(circle at 10% 20%, rgba(8, 185, 173, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  text-align: center;
}

.why-deni h2 {
  color: white;
}

.why-deni article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.why-deni p {
  margin: 28px 0 0;
  color: var(--teal);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.quote-form-wrap {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.floating-actions a,
.back-to-top {
  display: inline-flex;
  min-width: 94px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: white;
  box-shadow: 0 12px 26px rgba(2, 27, 56, 0.18);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.floating-actions a:nth-child(2) {
  background: var(--teal-dark);
}

.floating-actions a:nth-child(3) {
  background: var(--gold);
}

.back-to-top {
  position: fixed;
  z-index: 31;
  left: 18px;
  bottom: 22px;
  min-width: 68px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    url("assets/stones.jpeg") center / cover;
  color: var(--ink);
}

.quote-section h2 {
  color: var(--green);
}

.quote-section p {
  margin: 0 0 22px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 56px clamp(18px, 5vw, 78px) 28px;
  background: #061326;
  color: rgba(255, 255, 255, 0.76);
}

.footer a:hover {
  color: var(--teal);
}

.footer h3 {
  margin: 0 0 14px;
  color: white;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
}

.footer a,
.footer p {
  display: block;
  margin: 8px 0;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1120px) {
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-services div,
  .why-deni div {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-plans {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 12px;
    font-size: 11px;
  }

  .brand-logo {
    width: 230px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 90px;
    padding-inline: 14px;
  }

  .logo {
    min-width: 210px;
  }

  .brand-logo {
    width: 205px;
    height: 66px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo-text strong {
    font-size: 26px;
  }

  .logo-text b {
    font-size: 11px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 10px;
    color: var(--green);
  }

  .quote-link {
    margin-top: 8px;
  }

  .plans,
  .products div,
  .footer,
  .table-grid,
  .support-grid,
  .plan-tools,
  .about-feature,
  .about-values,
  .image-story,
  .photo-grid,
  .contact-layout,
  .payment-grid,
  .core-services div,
  .why-deni div {
    grid-template-columns: 1fr;
  }

  .detail-plan header {
    display: block;
    padding: 24px;
  }

  .detail-plan header span {
    margin-bottom: 14px;
  }

  .detail-plan > p,
  .detail-plan > h3,
  .detail-plan .table-grid,
  .detail-plan > a {
    margin-left: 20px;
    margin-right: 20px;
  }

  .core-services,
  .detailed-plans,
  .support-plans,
  .why-deni,
  .image-story,
  .contact-layout,
  .products,
  .quote-section {
    padding-block: 54px;
  }

  .photo-grid {
    padding-bottom: 54px;
  }

  .page-hero {
    min-height: 330px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-actions a {
    min-width: 0;
  }

  .back-to-top {
    display: none;
  }
}
