
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --coral: #ff6b6b;
      --coral-light: #ff9a9a;
      --teal: #00c2a8;
      --teal-light: #5de8d4;
      --sunny: #ffcc00;
      --sunny-light: #ffe566;
      --periwinkle: #6c8ef7;
      --mint: #e0faf5;
      --blush: #fff0f0;
      --bg: #f7fbff;
      --ink: #1e3050;
      --text: #2d4a6a;
    }



    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(150deg, #fff5f5 0%, #fff9f0 40%, #f0fbf8 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,107,107,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 20%, rgba(255,204,0,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 35% 50% at 20% 80%, rgba(0,194,168,0.08) 0%, transparent 60%);
    }

    .hero-inner {
      position: relative;
      display: flex;
      align-items: center;
      gap: 4rem;
      padding: 6rem 3rem 5rem;
      max-width: 1100px;
      width: 100%;
      animation: fadeUp 1.1s ease both;
    }

    .hero-text {
      flex: 1;
      text-align: left;
    }

    .hero-image {
      flex: 0 0 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-image img {
      width: 100%;
      max-width: 420px;
      filter: drop-shadow(0 20px 48px rgba(220,50,50,0.22)) drop-shadow(0 4px 16px rgba(0,0,0,0.10));
      animation: floatBox 4s ease-in-out infinite;
    }

    @keyframes floatBox {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-14px); }
    }

    /* glow ring behind image */
    .hero-image::before {
      content: '';
      position: absolute;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(255,107,107,0.15) 0%, rgba(255,204,0,0.08) 50%, transparent 70%);
      z-index: 0;
    }
    .hero-image img { position: relative; z-index: 1; }

    @media (max-width: 820px) {
      .hero-inner { flex-direction: column; text-align: center; gap: 2rem; padding: 4rem 2rem 3rem; }
      .hero-text { text-align: center; }
      .hero-image { flex: none; width: 80%; max-width: 320px; }
      .hero-image::before { width: 260px; height: 260px; }
    }

    /* Decorative bead string — CSS only */
    .bead-string {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 8px;
      background: repeating-linear-gradient(
        90deg,
        #ff6b6b 0px, #ff6b6b 10px,
        #ffcc00 10px, #ffcc00 18px,
        #00c2a8 18px, #00c2a8 28px,
        #6c8ef7 28px, #6c8ef7 38px,
        #ff9f43 38px, #ff9f43 48px,
        #26de81 48px, #26de81 58px
      );
      opacity: 1;
    }
    .bead-string.bottom {
      top: auto; bottom: 0;
      background: repeating-linear-gradient(
        90deg,
        #6c8ef7 0px, #6c8ef7 10px,
        #26de81 10px, #26de81 18px,
        #ff6b6b 18px, #ff6b6b 28px,
        #ffcc00 28px, #ffcc00 38px,
        #00c2a8 38px, #00c2a8 48px,
        #ff9f43 48px, #ff9f43 58px
      );
    }

    .hero-inner {
      position: relative;
      text-align: center;
      padding: 5rem 2rem 4rem;
      max-width: 800px;
      animation: fadeUp 1.1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.35em;
      color: var(--coral);
      text-transform: uppercase;
      margin-bottom: 1.4rem;
      animation: fadeUp 1s 0.2s ease both;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      animation: fadeUp 1s 0.35s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--coral);
    }

    .hero-sub {
      font-size: 1.2rem;
      color: var(--text);
      max-width: 520px;
      margin: 0 0 2.6rem;
      font-weight: 300;
      animation: fadeUp 1s 0.5s ease both;
    }

    @media (max-width: 820px) {
      .hero-sub { margin: 0 auto 2.6rem; }
    }

    .cta-btn {
      display: inline-block;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, #ff6b6b, #ff9f43);
      padding: 1rem 2.8rem;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(255,107,107,0.35);
      animation: fadeUp 1s 0.65s ease both;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255,107,107,0.5);
    }

    /* sparkle dots */
    .sparkles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .sparkle {
      position: absolute;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--coral);
      opacity: 0;
      animation: twinkle var(--d, 3s) var(--delay, 0s) infinite ease-in-out;
    }
    @keyframes twinkle {
      0%,100% { opacity: 0; transform: scale(0.5); }
      50%      { opacity: 0.85; transform: scale(1.4); }
    }

    /* ── INTRO BAND ── */
    .intro-band {
      background: linear-gradient(90deg, var(--coral), #ff9f43, var(--sunny), var(--teal));
      color: #fff;
      padding: 1.1rem 2rem;
      text-align: center;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      text-shadow: 0 1px 4px rgba(0,0,0,0.15);
    }

    /* ── MAIN CONTENT ── 
    .container {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 2rem;
    }
*/

    /* ── SECTION STYLES ── */
    .section {
      padding: 5rem 0;
      border-bottom: 1px solid rgba(108,142,247,0.15);
    }
    .section:last-of-type { border-bottom: none; }

    /* alternating section backgrounds */
    .section:nth-child(even) { background: var(--mint); }
    .section:nth-child(odd)  { background: var(--bg); }

    .section-label {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 120%;
      letter-spacing: 0.35em;
      color: var(--coral);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
	margin-top: 10px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--coral), var(--sunny), transparent);
    }
/*
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    h2 em { color: var(--coral); font-style: italic; }

    h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }

    p {
      color: var(--text);
      margin-bottom: 1.3rem;
      font-size: 1.08rem;
    }
    p:last-child { margin-bottom: 0; }

*/

    /* ── PULL QUOTE ── */
    .pull-quote {
      margin: 3rem 0;
      border-left: 5px solid var(--teal);
 /*     padding: 1.2rem 0 1.2rem 2rem; */
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.45rem;
      color: var(--ink);
      line-height: 1.45;
      background: linear-gradient(90deg, rgba(0,194,168,0.08), transparent);
      border-radius: 0 8px 8px 0;
    }

    /* ── FEATURE GRID ── */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.8rem;
      margin-top: 2.5rem;
	margin-left: 15px;
	margin-right: 15px;
    }

    .feature-card {
      background: white;
      border: 1px solid rgba(108,142,247,0.18);
      border-radius: 16px;
      padding: 2rem 1.6rem;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    .feature-card:nth-child(1)::before { background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
    .feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--sunny), #ffb347); }
    .feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
    .feature-card:nth-child(4)::before { background: linear-gradient(90deg, var(--periwinkle), #a3b8ff); }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(108,142,247,0.18);
    }

    .feature-icon {
      font-size: 2.4rem;
      margin-bottom: 0.9rem;
      display: block;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      font-size: 0.95rem;
      color: var(--text);
    }

    /* ── USES LIST ── */
    .uses-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .uses-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: white;
      border-radius: 12px;
      padding: 1.3rem 1.4rem;
      border: 1px solid rgba(108,142,247,0.13);
   /*   font-size: 1rem; */
      color: var(--text);
      transition: background 0.2s, transform 0.15s;
    }
    .uses-list li:hover { background: var(--blush); transform: translateY(-2px); }

    .uses-list .use-icon {
     /* font-size: 1.5rem; */
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .use-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 110%;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }

    /* ── SPECS ── */
    .specs-box {
      background: white;
      border: 1px solid rgba(108,142,247,0.2);
      border-radius: 16px;
      padding: 2.5rem;
      margin-top: 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 1.6rem;
      box-shadow: 0 4px 24px rgba(108,142,247,0.08);
    }

    .spec-item {
      text-align: center;
      padding: 1rem;
      border-right: 1px solid rgba(108,142,247,0.12);
    }
    .spec-item:last-child { border-right: none; }

    .spec-label {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.4rem;
    }

    .spec-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--ink);
    }

    /* ── STEPS ── */
    .steps {
      counter-reset: steps;
      list-style: none;
      margin-top: 2rem;
    }

    .steps li {
      counter-increment: steps;
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
      align-items: flex-start;
    }

    .steps li:nth-child(1)::before { background: linear-gradient(135deg, var(--coral), #ff9f43); }
    .steps li:nth-child(2)::before { background: linear-gradient(135deg, #ff9f43, var(--sunny)); }
    .steps li:nth-child(3)::before { background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
    .steps li:nth-child(4)::before { background: linear-gradient(135deg, var(--periwinkle), #a3b8ff); }
    .steps li:nth-child(5)::before { background: linear-gradient(135deg, #26de81, #20c997); }

    .steps li::before {
      content: counter(steps);
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.1rem;
      box-shadow: 0 3px 14px rgba(0,0,0,0.15);
    }

    .steps li p { margin-bottom: 0; }

    /* ── FOOTER CTA ── */
    .footer-cta {
      background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 30%, #ffcc00 60%, #26de81 80%, #45aaf2 100%);
      text-align: center;
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .footer-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.2), transparent);
    }
    .footer-cta .bead-string { position: absolute; }

    .footer-cta h2 {
      color: white;
      font-size: clamp(2rem, 5vw, 3.4rem);
      margin-bottom: 1rem;
      position: relative;
      text-shadow: 0 2px 16px rgba(0,0,0,0.15);
    }
    .footer-cta h2 em { color: #fff; font-style: italic; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-underline-offset: 6px; }

    .footer-cta p {
      color: rgba(255,255,255,0.9);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      font-size: 1.1rem;
      position: relative;
      text-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

    .footer-cta .cta-btn {
      position: relative;
      font-size: 0.82rem;
      background: white;
      color: var(--coral);
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    }
    .footer-cta .cta-btn:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .brand-footer {
      text-align: center;
      padding: 1.8rem;
      background: var(--ink);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ── DIVIDER ── */
    .ornament {
      text-align: center;
      color: var(--coral);
      font-size: 1.4rem;
      margin: 1rem 0;
      letter-spacing: 0.5rem;
      opacity: 0.7;
    }

    /* ── COLOR TIP CARDS ── */
    .color-tips {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .color-tip {
      border-radius: 14px;
      padding: 1.4rem 1.6rem;
      border-left: 5px solid transparent;
      background: white;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: transform 0.15s;
    }
    .color-tip:hover { transform: translateY(-3px); }

    .color-tip.red    { border-color: #e74c3c; background: #fff8f8; }
    .color-tip.blue   { border-color: #45aaf2; background: #f5faff; }
    .color-tip.green  { border-color: #26de81; background: #f4fdf8; }
    .color-tip.purple { border-color: #a55eea; background: #faf5ff; }
    .color-tip.gold   { border-color: #f7b731; background: #fffbf0; }
    .color-tip.pink   { border-color: #fd79a8; background: #fff5f9; }
    .color-tip.white  { border-color: #b2bec3; background: #f8f9fa; }
    .color-tip.teal   { border-color: #00c2a8; background: #f0fbf9; }

    .color-tip-swatch {
      display: inline-block;
      width: 14px; height: 14px;
      border-radius: 50%;
      margin-right: 6px;
      vertical-align: middle;
      box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    }

    .color-tip strong {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--ink);
      display: block;
      margin-bottom: 0.35rem;
    }

    .color-tip p {
      font-size: 0.92rem;
      color: var(--text);
      margin: 0;
    }

    
      .spec-item { border-right: none; border-bottom: 1px solid rgba(108,142,247,0.12); }
      .spec-item:last-child { border-bottom: none; }
      .steps li { gap: 1rem; }
    }