body {
  margin: 0;
  background: #f8fafc;
  font-family: 'Assistant', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  font-weight: 800;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.18em;
}

.badge {
  font-weight: 700;
}


.diamond-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-decor .blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .2;
  z-index: 0;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: #6ee7b7;
  top: -5%;
  right: -5%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #99f6e4;
  bottom: -10%;
  left: -10%;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
  position: relative;
  z-index: 5;
}

.diamond-header {
  text-align: center;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-icon {
  width: 200px;
}

.brand {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.hebrew {
  font-size: .9rem;
  color: #83c8f2;
  font-weight: 700;
}

.badge {
  display: inline-block;
  background: #055e9d;
  color: #ecfdf5;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  margin-top: 12px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 16px 0 8px;
  color: #055e9d;
}

h1 span {
  background: linear-gradient(to left, #00b9f7, #83c8f2);
  -webkit-background-clip: text;
  color: transparent;
}

.services {
  margin-top: 40px;
}

.free-box {
  border-radius: 32px;
  padding: 24px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.service-card {
  border-radius: 32px;
  padding: 24px;
  color: white;
  text-align: center;
}

.service-card.dark {
  background: linear-gradient(135deg, #83c8f2, #00b9f7);
}

.service-card.green {
  background: linear-gradient(135deg, #00b9f7, #83c8f2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1),
              transform .9s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.diamond-header {
  padding-top: 40px;
padding-bottom: 40px;
  margin-bottom: 48px;
  border-radius: 20px;
}

.diamond-header h1 {
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.diamond-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 520px;
  margin: 0 auto;
}

.free-box strong {
  display: block;
  font-size: 1.5rem;
  color: #00b9f7;
  margin-bottom: 6px;
}

.free-box span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.diamond-logo {
  position: relative;
}
.diamond-logo svg {
  color: #00b9f7;              /* deep emerald */
  filter: drop-shadow(0 6px 14px rgba(6,95,70,.25));
}
.diamond-logo::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(16,185,129,.4), transparent 60%);
  filter: blur(18px);
  opacity: .5;
  z-index: -1;
}

.ai-advisor {
  background: linear-gradient(135deg, #ecf7fd, white);
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid #d1fae5;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  margin: 60px 0;
}

.ai-advisor h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #055e9d;
}

.ai-advisor p {
  color: #64748b;
  margin-bottom: 24px;
}

.ai-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ai-buttons button {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.ai-buttons button.active {
  background: #83c8f2;
  color: white;
  border-color: #83c8f2;
}

#ai-generate {
  margin-top: 24px;
  background: #00b9f7;
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.ai-result {
  margin-top: 24px;
  background: rgba(16,185,129,.12);
  padding: 24px;
  border-radius: 18px;
  font-size: 1.05rem;
  color: #064e3b;
  display: none;
}

.why-diamond {
  background: white;
  border-radius: 48px;
  padding: 64px 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
  border: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

.why-diamond h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 40px;
}

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

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
}

.why-item p {
  color: #475569;
  margin-top: 6px;
}

.why-cta {
  margin-top: 48px;
  text-align: center;
}

.why-cta button {
  background: #00b9f7;
  color: white;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(6,78,59,.25);
  border: none;
  cursor: pointer;
}

.why-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.why-line {
  width: 32px;
  height: 6px;
  background: #00b9f7;
  border-radius: 999px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  background: #ecfdf5;
  color: #055e9d;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(5,150,105,.15);
}

.about-diamond {
  background: #043354;
  border-radius: 40px;
  padding: 56px 48px;
  color: white;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  margin-bottom: 40px;
}

.about-icon {
  background: rgba(255,255,255,.06);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  transform: rotate(3deg);
  transition: transform .5s ease;
}

.about-icon:hover {
  transform: rotate(0deg);
}

.about-gem {
  width: 60px;
  color: #2dd4bf;
  filter: drop-shadow(0 0 15px rgba(45,212,191,.5));
}

.about-text h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.about-text p {
  color: #d1fae5;
  line-height: 1.6;
  max-width: 520px;
}

.contact-section {
  background: white;
  border-radius: 48px;
  padding: 64px 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,.1);
}
.type-buttons .has-subtext {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.type-buttons .sub-text {
  font-size: 12px;      /* small text */
  color: #888;          /* lighter color */
  font-weight: 400;
}


.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
}

.contact-section p {
  text-align: center;
  color: #055e9d;
  margin-bottom: 32px;
}

.contact-form {
  max-width: 640px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  background: #f8fafc;
  font-size: 1rem;
  outline: none;
}

.contact-type {
  margin: 24px 0;
}

.type-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.type-buttons button {
  padding: 14px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.type-buttons .active {
  background: #83c8f2;
  color: white;
  border-color: #83c8f2;
}

.submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  border-radius: 999px;
  background: linear-gradient(to left, #00b9f7, #83c8f2);
  color: white;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.contact-form small {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: #94a3b8;
}

.diamond-footer {
  padding: 64px 24px;
  background-color: #ffffff00 !important;
  box-shadow: 0px -5px 14px -9px rgba(0, 0, 0, 0) !important;
  
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: auto;
}

.footer-grid h5 {
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-grid p {
  color: #475569;
  font-size: .9rem;
}

.footer-center {
  text-align: center;
}

.footer-logo {
  width: 40px;
  margin-bottom: 8px;
  color: #83c8f2;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #022c22;
}

.footer-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(5,150,105,.15);
}

.form-message {
  margin-top: 16px;
  font-weight: 700;
  text-align: center;
}

/* =========================================================
   GLOBAL ICON COLOR CORRECTION — remove black everywhere
   ========================================================= */


.diamond-logo svg,
.footer-logo,
.ai-advisor svg,
.check svg,
.footer-icon svg {
  color: #00b9f7 !important;
  fill: currentColor !important;
}

/* Diamond logo glow already applied earlier — reinforce */
/*.logo-icon {
  filter: drop-shadow(0 6px 14px rgba(6,95,70,.25)) !important;
}*/

/* =========================================================
   FOOTER TRUST / SHIELD ICON (missing one)
   ========================================================= */

.footer-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  box-shadow: 0 6px 16px rgba(5,150,105,.18);
  margin-bottom: 12px;
}

.footer-shield svg {
  width: 22px;
  height: 22px;
  color: #055e9d;
}

/* =========================================================
   Footer clean separation (no fake shadow)
   ========================================================= */

.contact-section {
  box-shadow: 0 20px 40px rgba(0,0,0,.08) !important;
  position: relative;
  z-index: 2;
}

.diamond-footer {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LEFT */
.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #022c22;
}

.footer-left p {
  margin-top: 10px;
  font-size: .9rem;
  color: #475569;
  max-width: 300px;
}

/* SHIELD */
.footer-shield {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  box-shadow: 0 4px 10px rgba(5,150,105,.15);
}

.footer-shield svg {
  width: 16px;
  height: 16px;
}

/* CENTER */
.footer-diamond {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #ecfdf5 !important;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 2px rgba(5, 150, 105, .15);
  margin-bottom: 8px;
}

.footer-diamond svg {
  width: 28px;
  color: #055e9d;
}

.footer-center small {
  font-size: .75rem;
  color: #64748b;
}

/* RIGHT */
.footer-right h5 {
  font-weight: 900;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-left p {
    margin: 10px auto 0;
  }

  .footer-title {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-diamond {
    width: 56px;
    height: 56px;
  }

  .footer-diamond svg {
    width: 24px;
  }

  .footer-left p {
    font-size: .85rem;
  }
}

/* ===== Footer column correction ===== */

.footer-left { order: 3; }   /* Brand block → right side */
.footer-center { order: 2; } /* Diamond stays center */
.footer-right { order: 1; }  /* NAP → right-most visually */

@media (max-width: 900px) {
  .footer-left,
  .footer-center,
  .footer-right {
    order: unset;
  }
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-center small {
  margin-top: 6px;
  text-align: center;
}

/* ===============================
   WHY DIAMOND — RESPONSIVE FIXES
   =============================== */

@media (max-width: 900px) {
  .why-diamond {
    padding: 48px 28px;
    border-radius: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .why-line {
    width: 48px;
  }

  .why-item {
    align-items: flex-start;
  }

  .why-cta button {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-diamond {
    padding: 36px 20px;
    border-radius: 28px;
  }

  .why-diamond h2 {
    font-size: 1.6rem;
  }

  .why-item h4 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: .9rem;
  }

  .check {
    width: 24px;
    height: 24px;
    font-size: .8rem;
  }
}
/* ===============================
   ABOUT DIAMOND — RESPONSIVE FIX
   =============================== */

@media (max-width: 900px) {
  .about-diamond {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
    gap: 24px;
  }

  .about-text p {
    max-width: 100%;
  }

  .about-icon {
    transform: rotate(0deg);
  }
}

@media (max-width: 480px) {
  .about-diamond {
    padding: 36px 20px;
    border-radius: 32px;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: .9rem;
    line-height: 1.5;
  }

  .about-gem {
    width: 48px;
  }
}
/* ===============================
   ABOUT DIAMOND — diamond glow + responsive
   =============================== */
.about-gem {
  width: 60px;
  color: #3acfe7;
  filter:
    drop-shadow(0 0 10px rgba(45,212,191,.85))
    drop-shadow(0 0 22px rgba(45,212,191,.5));
}
@media (max-width: 768px) {
  .about-diamond {
    flex-direction: column;
    text-align: center;
  }

  .about-icon {
    transform: rotate(0deg);
  }
}
/* ===============================
   Crystal Diamond Fix (About)
   =============================== */

.about-icon {
  position: relative;
}

.about-gem {
  width: 64px;
  height: 64px;

  /* Force outline-only diamond */
  fill: none !important;
  stroke: #3ae7bf !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* React SPA glow */
  filter:
    drop-shadow(0 0 10px rgba(45,212,191,.9))
    drop-shadow(0 0 20px rgba(45,212,191,.6))
    drop-shadow(0 0 32px rgba(45,212,191,.35));
}

/* Kill any inherited fill from theme */
.about-gem *,
.about-icon svg,
.about-icon path {
  fill: none !important;
}

/* ===== Diamond Brightness Boost ===== */

.about-gem {
  stroke: #3acfe7 !important;                /* brighter emerald */
  stroke-width: 2.6;              /* thicker crystal lines */

  filter:
    drop-shadow(0 0 12px rgba(95,255,214,.95))
    drop-shadow(0 0 26px rgba(45,212,191,.75))
    drop-shadow(0 0 44px rgba(16,185,129,.45));
}

/* ===============================
   Hero Diamond Crystal Upgrade
   =============================== */

.logo-icon {
  width: 200px;
  height: 200px;
  fill: none !important;
  stroke: #0e746b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Kill inherited fill that causes silhouette */
.logo-icon *,
.diamond-logo svg,
.diamond-logo path {
  fill: none !important;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}