:root {
  --dayzy-navy: #071735;
  --dayzy-text: #2f3a50;
  --dayzy-muted: #667085;
  --dayzy-purple: #7047e8;
  --dayzy-purple-dark: #5631c9;
  --dayzy-pink: #ff7a97;
  --dayzy-orange: #ffad4f;
  --dayzy-yellow: #ffbe3d;
  --dayzy-bg: #fffaf5;
  --dayzy-soft: #f8f3ff;
  --dayzy-border: #eceef4;
  --dayzy-shadow: 0 18px 45px rgba(20, 24, 44, 0.08);
  --dayzy-radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--dayzy-navy);
  background: #ffffff;
}

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

img {
  max-width: 100%;
  display: block;
}

.dayzy-page {
  overflow: hidden;
}

/* Header */

.dayzy-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 24px 6%;
}

.dayzy-header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dayzy-logo {
  display: inline-flex;
  align-items: center;
  width: 172px;
}

.dayzy-logo img {
  width: 100%;
  height: auto;
}

.dayzy-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.dayzy-nav a {
  position: relative;
  color:white;
  font-size:18px;
  font-family: 'Raleway';
}

.dayzy-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dayzy-pink), var(--dayzy-orange));
  transition: 0.25s ease;
}

.dayzy-nav a:hover::after {
  width: 100%;
}

.dayzy-menu-toggle {
  display: none;
}

/* Hero */

.dayzy-hero {
  position: relative;
  min-height: 620px;
  padding: 132px 6% 96px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 38%, rgba(0,0,0,0.38) 70%),
    url("https://mydayzy.com/wp-content/uploads/2026/05/hero.jpg");
  background-size: cover;
  background-position: center right;
}

.dayzy-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -60px;
  width: 116%;
  height: 120px;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
}

.dayzy-hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.dayzy-hero-content {
  max-width: 660px;
}

.dayzy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  margin-bottom: 28px;
  border: 1px solid rgba(112, 71, 232, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  color: var(--dayzy-purple);
  font-size: 14px;
  font-weight: 700;
}

.dayzy-hero h1 {
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0;
  margin: 34px 0 20px;
}

.dayzy-hero p {
  max-width: 590px;
  font-size: 22px;
  line-height: 1.4;
  color: #40506a;
  margin-bottom: 20px;
}

.dayzy-script {
  display: inline-block;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: var(--dayzy-purple);
  font-size: 24px;
  margin-bottom: 28px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--dayzy-purple);
}

.dayzy-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dayzy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 16px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--dayzy-purple), var(--dayzy-purple-dark));
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(112, 71, 232, 0.24);
  transition: 0.25s ease;
}

.dayzy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(112, 71, 232, 0.32);
}

.dayzy-btn-light {
  background: #ffffff;
  color: var(--dayzy-purple);
  box-shadow: 0 12px 28px rgba(20, 24, 44, 0.08);
}

.dayzy-text-link {
  color: var(--dayzy-purple);
  font-weight: 800;
}

/* Products */

.dayzy-products {
  position: relative;
  z-index: 3;
  padding: 30px 6%;
  background: #ffffff;
}

.dayzy-container {
  max-width: 1240px;
  margin: 0 auto;
}

.dayzy-section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 26px;
}

.dayzy-section-heading h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.dayzy-section-heading p {
  color: var(--dayzy-muted);
  font-size: 16px;
  line-height: 1.65;
}

.dayzy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dayzy-product-card {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--dayzy-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 16px;
  transition: 0.25s ease;
}

.dayzy-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dayzy-shadow);
}

.dayzy-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.dayzy-card-title {
  font-size: 20px;
  margin-bottom: 7px;
}

.dayzy-card-text {
  color: #43506a;
  font-size: 14px;
  line-height: 1.55;
}

.dayzy-arrow {
  font-size: 24px;
  color: var(--dayzy-navy);
}

.icon-purple {
  background: #efe7ff;
  color: #7047e8;
}

.icon-coral {
  background: #ffe9e3;
  color: #ee6048;
}

.icon-green {
  background: #e5f8ed;
  color: #15985a;
}

.icon-blue {
  background: #e8f4ff;
  color: #1773d2;
}

.icon-orange {
  background: #fff1df;
  color: #d88212;
}

.icon-pink {
  background: #ffe5f1;
  color: #d64186;
}

/* Showcase */

.dayzy-showcase {
  padding: 20px 6% 28px;
}

.dayzy-showcase-card {
  max-width: 1240px;
  min-height: 340px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 122, 151, 0.18), transparent 32%),
    radial-gradient(circle at 72% 25%, rgba(112, 71, 232, 0.13), transparent 28%),
    linear-gradient(135deg, #fff1f4 0%, #f7f2ff 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.dayzy-showcase-copy span {
  display: inline-block;
  color: var(--dayzy-purple);
  font-weight: 800;
  margin-bottom: 14px;
}

.dayzy-showcase-copy h2 {
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.dayzy-showcase-copy p {
  max-width: 430px;
  color: #4b5568;
  line-height: 1.6;
  margin-bottom: 22px;
}

.dayzy-device-wrap {
  position: relative;
  min-height: 320px;
}

.dayzy-laptop {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: 600px;
  max-width: 100%;
  padding: 24px;
  border: 8px solid #111827;
  border-radius: 18px 18px 8px 8px;
  background: #ffffff;
  box-shadow: 0 24px 46px rgba(0,0,0,0.18);
}

.dayzy-laptop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dayzy-laptop-top h3,
.dayzy-phone h3 {
  font-size: 15px;
}

.dayzy-laptop-top a {
  color: var(--dayzy-purple);
  font-size: 12px;
  font-weight: 700;
}

.dayzy-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 22px;
}

.dayzy-moment-grid div {
  min-height: 78px;
  border-radius: 12px;
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=600&q=85");
  background-size: cover;
  background-position: center;
}

.dayzy-plan-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f7f8fb;
}

.dayzy-plan-img {
  height: 62px;
  border-radius: 12px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=600&q=85");
  background-size: cover;
  background-position: center;
}

.dayzy-plan-row h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.dayzy-plan-row p {
  font-size: 12px;
  color: var(--dayzy-muted);
}

.dayzy-avatars {
  display: flex;
}

.dayzy-avatars span {
  width: 26px;
  height: 26px;
  margin-left: -7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dayzy-pink), var(--dayzy-orange));
}

.dayzy-phone {
  position: absolute;
  left: 0;
  bottom: -22px;
  z-index: 2;
  width: 210px;
  height: 342px;
  padding: 32px 14px 18px;
  border: 8px solid #111827;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 22px 42px rgba(0,0,0,0.18);
}

.dayzy-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 76px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #111827;
  transform: translateX(-50%);
}

.dayzy-phone-logo {
  width: 52px;
  margin-bottom: 14px;
}

.dayzy-story-strip {
  display: flex;
  gap: 8px;
  margin: 10px 0 14px;
}

.dayzy-story-strip span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe5f1, #fff1df);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(20,24,44,0.08);
}

.dayzy-phone-card {
  height: 160px;
  border-radius: 20px;
  padding: 14px;
  color: #ffffff;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=600&q=85");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.dayzy-phone-card p {
  font-size: 12px;
  line-height: 1.35;
}

.dayzy-mini-list {
  margin-top: 14px;
}

.dayzy-mini-list div {
  height: 8px;
  border-radius: 999px;
  background: #eef0f6;
  margin-bottom: 8px;
}

.dayzy-mini-list div:nth-child(1) {
  width: 80%;
}

.dayzy-mini-list div:nth-child(2) {
  width: 55%;
}

.dayzy-mini-list div:nth-child(3) {
  width: 70%;
}

/* Feature row */

.dayzy-features {
  padding: 16px 6% 34px;
}

.dayzy-feature-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dayzy-feature {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 16px;
  padding: 8px;
}

.dayzy-feature .dayzy-icon {
  width: 58px;
  height: 58px;
  font-size: 25px;
  border-radius: 18px;
}

.dayzy-feature h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.dayzy-feature p {
  color: #596579;
  font-size: 13px;
  line-height: 1.45;
}

/* CTA */

.dayzy-cta-section {
  padding: 0 6% 32px;
}

.dayzy-cta {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 58% 44%, rgba(255,255,255,0.36), transparent 22%),
    linear-gradient(135deg, #f5e4ff, #ffdbe7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dayzy-cta h2 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
}

/* Footer */

.dayzy-footer {
  padding: 0 6% 34px;
}

.dayzy-footer-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: start;
  gap: 36px;
  position: relative;
}

.dayzy-footer-logo {
  display: inline-flex;
  align-items: center;
  width: 142px;
  max-width: 100%;
  margin-bottom: 14px;
}

.dayzy-footer-logo img {
  width: 100%;
  height: auto;
}

.dayzy-footer p {
  color: #4b5568;
  font-size: 14px;
  line-height: 1.5;
}

.dayzy-footer-inner > div:first-child p {
  max-width: 100%;
}

.dayzy-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.dayzy-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7f8fb;
  color: var(--dayzy-navy);
  font-size: 14px;
  font-weight: 800;
}

.dayzy-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dayzy-footer h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.dayzy-footer-links a {
  display: block;
  color: #596579;
  font-size: 14px;
  margin-bottom: 9px;
}

.dayzy-footer-note {
  padding-left: 36px;
  border-left: 1px solid #e4e7ef;
}

.dayzy-footer-note img {
  width: 48px;
  margin-top: 18px;
}

.dayzy-copyright {
  max-width: 1240px;
  margin: 22px auto 0;
  text-align: center;
  color: #7b8496;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 1040px) {
  .dayzy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dayzy-showcase-card {
    grid-template-columns: 1fr;
  }

  .dayzy-device-wrap {
    min-height: 340px;
  }

  .dayzy-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dayzy-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dayzy-footer-logo {
    width: 136px;
  }

  .dayzy-footer-note {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 820px) {
  .dayzy-header {
    position: relative;
    padding: 12px 6%;
    background: #ffffff;
  }

  .dayzy-header-inner {
    position: relative;
    flex-direction: row;
    gap: 16px;
  }

  .dayzy-logo {
    width: 108px;
  }

  .dayzy-menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--dayzy-border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--dayzy-navy);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .dayzy-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    transition: 0.2s ease;
  }

  .dayzy-header.is-nav-open .dayzy-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .dayzy-header.is-nav-open .dayzy-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .dayzy-header.is-nav-open .dayzy-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .dayzy-nav {
    position: absolute;
    top: calc(100% - 10px);
    right: 0;
    z-index: 40;
    width: min(270px, 88vw);
    padding: 10px;
    border: 1px solid var(--dayzy-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: 0.2s ease;
  }

  .dayzy-header.is-nav-open .dayzy-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .dayzy-nav a {
    color: var(--dayzy-navy);
    font-size: 15px;
    padding: 12px 13px;
    border-radius: 12px;
  }

  .dayzy-nav a:hover,
  .dayzy-nav a:focus {
    background: #f7f8fb;
  }

  .dayzy-nav a::after {
    display: none;
  }

  .dayzy-hero {
    min-height: auto;
    padding: 42px 6% 64px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.82)),
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=85");
    background-size: cover;
    background-position: center;
  }

  .dayzy-hero::after {
    bottom: -42px;
    height: 82px;
  }

  .dayzy-hero h1 {
    font-size: 44px;
    line-height: 1.04;
    letter-spacing: 0;
    margin: 0 0 16px;
  }

  .dayzy-hero p {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .dayzy-script {
    font-size: 21px;
    margin-bottom: 22px;
  }

  .dayzy-hero-actions {
    gap: 12px;
  }

  .dayzy-btn {
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 14px;
  }

  .dayzy-products {
    padding: 24px 6%;
  }

  .dayzy-section-heading {
    margin-bottom: 20px;
  }

  .dayzy-section-heading h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .dayzy-section-heading p {
    font-size: 15px;
    line-height: 1.5;
  }

  .dayzy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dayzy-product-card {
    min-height: auto;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .dayzy-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 24px;
  }

  .dayzy-card-title {
    font-size: 18px;
  }

  .dayzy-card-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .dayzy-showcase {
    padding: 18px 6% 22px;
  }

  .dayzy-showcase-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 20px;
    gap: 20px;
  }

  .dayzy-showcase-copy span {
    margin-bottom: 10px;
  }

  .dayzy-showcase-copy h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .dayzy-showcase-copy p {
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .dayzy-device-wrap {
    display: none;
  }

  .dayzy-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dayzy-features {
    padding: 18px 6% 26px;
  }

  .dayzy-feature {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 4px;
  }

  .dayzy-feature .dayzy-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 15px;
  }

  .dayzy-feature h3 {
    font-size: 16px;
  }

  .dayzy-feature p {
    font-size: 13px;
  }

  .dayzy-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .dayzy-cta-section {
    padding: 0 6% 26px;
  }

  .dayzy-cta h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .dayzy-footer {
    padding: 8px 6% 30px;
    background: linear-gradient(180deg, #ffffff, #fbf8ff);
  }

  .dayzy-footer-inner {
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid #eceef4;
  }

  .dayzy-footer-inner > div:first-child {
    padding: 0 10px;
    text-align: center;
  }

  .dayzy-footer-logo {
    width: 112px;
    margin: -4px auto 6px;
  }

  .dayzy-footer-inner > div:first-child p {
    max-width: 40%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.5;
  }

  .dayzy-footer-note p {
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.5;
  }

  .dayzy-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .dayzy-footer-links > div {
    padding: 16px;
    border: 1px solid var(--dayzy-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .dayzy-footer-links > div:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .dayzy-footer-links > div:first-child h4 {
    grid-column: 1 / -1;
  }

  .dayzy-footer h4 {
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
  }

  .dayzy-footer-links a {
    margin-bottom: 0;
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .dayzy-footer-note {
    padding: 16px;
    border: 1px solid var(--dayzy-border);
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .dayzy-footer-note h4 {
    margin-bottom: 6px;
  }

  .dayzy-copyright {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eceef4;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .dayzy-footer-inner > div:first-child p {
    max-width: 72%;
  }
}
