@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* HTML Resets & Base Elements */
* { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-family: sans-serif; }
body { margin: 0; min-height: 100%; direction: rtl; color: #0d0d0d; text-align: right; font-family: 'Rubik', sans-serif; font-size: 1.3rem; line-height: 1.4; background-color: #fff; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
a { background-color: #0000; }
a:active, a:hover { outline: 0; }
b, strong { font-weight: bold; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 10px; font-weight: bold; }
h1 { margin-top: 20px; font-size: 38px; line-height: 44px; }
h2 { margin-top: 20px; font-size: 32px; line-height: 36px; }
h3 { margin-top: 20px; font-size: 24px; line-height: 30px; }
h4 { margin-top: 10px; font-size: 18px; line-height: 24px; }
p { margin-top: 0; margin-bottom: 10px; }
img { vertical-align: middle; max-width: 100%; display: inline-block; border: 0; }
button, input, select, textarea { color: inherit; font: inherit; margin: 0; }
button, html input[type="button"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; border: 0; }
input { line-height: normal; }
input[type="checkbox"] { box-sizing: border-box; padding: 0; }
ul { margin-top: 0; margin-bottom: 10px; padding-left: 40px; }
textarea { overflow: auto; resize: none; min-height: 5rem; }

/* Fonts */
/* Google Fonts Rubik imported at top of file */

/* Variables */
:root {
  --white-smoke: #f5f5f5;
  --dark: #0d0d0d;
  --white: white;
  --light-blue: #5c9df2;
  --green: #7ecc7a;
  --red: #ea3e4e;
  --brand-green: #10B981;
  --brand-green-light: rgba(16, 185, 129, 0.45);
}

/* Base Classes */
.w-clearfix:before, .w-clearfix:after { content: " "; grid-area: 1 / 1 / 2 / 2; display: table; }
.w-clearfix:after { clear: both; }
.w-inline-block { max-width: 100%; display: inline-block; }
.w-form { margin: 0 0 15px; }
.w-input { color: #333; vertical-align: middle; background-color: #fff; border: 1px solid #ccc; width: 100%; height: 38px; margin-bottom: 10px; padding: 8px 12px; font-size: 14px; line-height: 1.42857; display: block; }
.w-input:focus { border-color: #3898ec; outline: 0; }
.w-button { color: #fff; line-height: inherit; cursor: pointer; background-color: #3898ec; border: 0; border-radius: 0; padding: 9px 15px; text-decoration: none; display: inline-block; }

/* Typography Overrides */
h1, h2 { margin-top: 0; margin-bottom: 1rem; font-size: 3rem; font-weight: 800; line-height: 1.2; }
h3 { margin-top: 0; margin-bottom: 1rem; font-size: 2rem; font-weight: 800; line-height: 1.3; }
h4 { margin-top: 0; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; line-height: 24px; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }
.extra-big-text { font-size: 2rem; line-height: 1.4; }
.big-text { font-size: 1.5rem; line-height: 1.4; }
.underline { text-decoration: underline; }
.red-text { color: #ea3e4e; }
.light-blue-text { color: var(--brand-green) !important; }
.bg-text-green { background-color: var(--brand-green); color: #ffffff; padding: 0.1em 0.4em; border-radius: 6px; display: inline-block; line-height: 1.2; }

/* Layout & Containers */
.container { max-width: 60rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.container.small { max-width: 40rem; }
.container.large { max-width: 80rem; }

/* Sections */
.hero-section { color: var(--white); text-align: center; position: relative; overflow: hidden; }
.hero-topper { background-color: var(--white); color: var(--dark); border-bottom-right-radius: 2rem; border-bottom-left-radius: 2rem; max-width: 40rem; margin-bottom: 2rem; margin-left: auto; margin-right: auto; padding: 1rem 2rem; }
.hero-background { z-index: -999; background-color: #2d2d2d; background-image: radial-gradient(circle at 50% 0, #fff3, #fff0); border-bottom-right-radius: 5rem; border-bottom-left-radius: 5rem; height: 40rem; position: absolute; inset: 0% 1rem auto; }
.dark-section { color: var(--white); background-color: #2d2d2d; padding-top: 2rem; padding-bottom: 2rem; }
.white-section { padding-top: 2rem; padding-bottom: 2rem; }
.white-section.footer { text-align: center; padding-top: .5rem; padding-bottom: .5rem; font-size: 1rem; }
.light-gray-section { background-color: var(--white-smoke); padding-top: 2rem; padding-bottom: 2rem; }
.half-dark-section { background-color: #2d2d2d; background-image: linear-gradient(#2d2d2d 50%, #fff 50%); padding-top: 2rem; padding-bottom: 2rem; }

/* Grids */
.hero-section-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; padding-bottom: 2rem; }
.about-section-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.pains-section-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }

/* Images */
.main-hero-image { width: auto; max-width: 80%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); margin: 2rem auto 0; display: block; }
.about-image { width: 100%; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); object-fit: cover; }
.pains-chart-image { width: 100%; max-width: 500px; display: block; margin: 0 auto; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

/* Buttons & Forms */
.blue-round-button { grid-column-gap: 1rem; grid-row-gap: 1rem; background-color: var(--brand-green) !important; color: var(--white); border-radius: 50rem; justify-content: center; align-items: center; padding: 1rem 2rem; font-size: 1.5rem; text-decoration: none; transition: all .2s ease-in-out; display: inline-flex; box-shadow: 0 5px 10px #0000001a; }
.blue-round-button:hover { transform: translate(0, -2px); }
.dark-round-button { background-color: var(--brand-green) !important; border-radius: 100rem; height: 3rem; padding: .5rem 2rem; font-weight: 700; }
.blue-form-wrapper { background-color: var(--brand-green) !important; border-color: var(--brand-green) !important; color: var(--white); border-radius: 12px; padding: 2.5rem 2rem !important; }
.blue-form-wrapper .form-header { color: #ffffff !important; margin-bottom: 1.5rem; }
.round-text-field { direction: rtl; color: var(--dark); text-align: right; background-color: #ffffff4d; border: 1px #000; border-radius: 50rem; height: 3rem; margin-bottom: 0; padding: .5rem 1rem; font-size: 1.2rem; }
.round-text-field::placeholder { color: var(--white); }
.form-grid { grid-column-gap: 1rem; grid-row-gap: 1rem; grid-template-rows: auto; grid-template-columns: 1fr 1fr 1fr; grid-auto-columns: 1fr; display: grid; }
.form-footer { color: var(--white); background-color: #2d2d2d; border-bottom-right-radius: 1rem; border-bottom-left-radius: 1rem; max-width: 80%; padding: .25rem 1rem; font-size: 1.2rem; font-style: italic; display: inline-block; }
.form-block { margin-bottom: 0; }
#Lead-Form input[type="submit"] { background-color: #1f2937 !important; color: #ffffff !important; border: none; }

/* Components - Solution Blocks */
.blue-list-block { grid-column-gap: 1.25rem; grid-row-gap: 1.25rem; background-color: var(--brand-green) !important; color: #ffffff !important; text-align: right; border-radius: .5rem; justify-content: center; align-items: center; padding: .75rem 1.5rem; display: flex; position: relative; }
.blue-list-blocks-wrapper { grid-column-gap: .75rem; grid-row-gap: .75rem; flex-flow: column; justify-content: flex-start; align-items: center; display: flex; }
.cascading-block-1 { width: 70% !important; max-width: none !important; margin: 0 auto !important; justify-content: center !important; font-size: 1.5rem !important; padding: 1.25rem 2rem !important; text-align: center !important; }
.cascading-block-2 { width: 85% !important; max-width: none !important; margin: 0 auto !important; justify-content: center !important; font-size: 1.5rem !important; padding: 1.25rem 2rem !important; text-align: center !important; }
.cascading-block-3 { width: 100% !important; max-width: none !important; margin: 0 auto !important; justify-content: center !important; font-size: 1.5rem !important; padding: 1.25rem 2rem !important; text-align: center !important; }

/* Components - Onboarding Steps */
.onboarding-steps-wrapper { grid-column-gap: 1.5rem; grid-row-gap: 1.5rem; flex-flow: column; grid-template-rows: auto auto; grid-template-columns: 1fr 1fr; grid-auto-columns: 1fr; max-width: 30rem; margin: 1.5rem auto; padding-right: 1rem; font-size: 1.5rem; display: flex; }
.blue-list-block.onboarding { padding-right: 4.5rem !important; padding-left: 2rem !important; min-height: 4.5rem; }
.onboarding-number { background-color: #ffffff !important; color: var(--brand-green) !important; border-radius: 50% !important; width: 4rem !important; height: 4rem !important; display: flex !important; justify-content: center !important; align-items: center !important; position: absolute !important; right: 0 !important; top: 50% !important; transform: translate(50%, -50%) !important; box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important; font-size: 2rem !important; font-weight: 800 !important; border: none !important; }

/* Components - Avatar List */
.avatar-wrapper { grid-column-gap: 4rem; grid-row-gap: 4rem; justify-content: center; margin-top: 2rem; margin-bottom: 2rem; display: flex; }
.avatar-block { color: var(--white); background-color: #2d2d2d; border-radius: 1rem; padding: 2rem 4rem; }
.avatar-block.blue { background-color: var(--brand-green) !important; }
.avatar-list-line { grid-column-gap: 1rem; grid-row-gap: 1rem; text-align: right; border-bottom: 1px solid #f5f5f580; justify-content: flex-start; align-items: center; padding-top: .75rem; padding-bottom: .75rem; display: flex; }
.avatar-list-line.last { border-bottom-style: none; }

/* Components - FAQ */
.faq-wrapper-2 { grid-column-gap: 1rem; grid-row-gap: 1rem; text-align: right; flex-flow: column; display: flex; }
.faq-block-2 { color: var(--white); cursor: pointer; background-color: #2d2d2d; border-radius: .5rem; padding: 1rem 2rem; }
.faq-question-wrapper-2 { grid-column-gap: 2rem; grid-row-gap: 2rem; justify-content: space-between; align-items: center; padding-top: .25rem; padding-bottom: .25rem; display: flex; }
.faq-arrow-icon-2 { height: 1.75rem; filter: hue-rotate(130deg) brightness(1.2); }
.faq-question-text-2 { font-size: 1.5rem; font-weight: 700; line-height: 1.5; }
.faq-answer-text-2 { width: 90%; }

/* Icons & SVG */
.check-icon { width: 28px !important; height: 28px !important; margin-left: 14px; flex-shrink: 0; }
.list-icon-svg { width: 22px; height: 22px; margin-left: 12px; flex-shrink: 0; }
.button-icon { height: 2rem; filter: hue-rotate(130deg) brightness(1.2); }

/* Text Markers */
.red-marker { --u: 100%; --h: .45em; --y: 0em; background-repeat: no-repeat; background-position: center calc(100% - var(--y)); background-size: var(--u) var(--h); -webkit-box-decoration-break: clone; box-decoration-break: clone; padding-bottom: 1%; background-image: url("https://cdn.prod.website-files.com/654bc6376837e19d25be369f/68b5dd1bfb86dd720c9b433a_Red%20Marker.webp"); }
.yellow-marker { --u: 100%; --h: 1.1em; --y: 0em; background-repeat: no-repeat; background-position: center calc(50% - var(--y)); background-size: var(--u) var(--h); -webkit-box-decoration-break: clone; box-decoration-break: clone; padding-bottom: 1%; background-image: linear-gradient(rgba(255, 228, 77, .45), rgba(255, 228, 77, .45)); }

/* Footer */
.footer-link { color: #2d2d2d; text-decoration: none; }
.footer-text { opacity: .9; }

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-section-grid { grid-template-columns: 1.2fr 1fr; padding-bottom: 3rem; }
  .about-section-grid { grid-template-columns: 1fr 1fr; }
  .pains-section-grid { grid-template-columns: 1.2fr 1fr; }
}

@media screen and (max-width: 1500px) { html { font-size: 90%; } }
@media screen and (max-width: 1280px) { html { font-size: 80%; } }
@media screen and (max-width: 991px) { 
  html { font-size: 100%; } 
  .hero-topper { margin-bottom: 1rem; }
  .hero-background { border-radius: 0; left: 0%; right: 0%; }
  .avatar-wrapper { grid-column-gap: 2rem; grid-row-gap: 2rem; flex-flow: column; }
}

@media screen and (max-width: 767px) {
  body { font-size: 1.2rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-background { height: 100%; }
  .avatar-wrapper { margin-top: 0; }
  .faq-block-2 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .blue-round-button { font-size: 1.2rem; }
  .blue-form-wrapper { padding-left: 2rem; padding-right: 2rem; }
  .dark-round-button { width: 100%; }
  .form-footer { font-size: 1.1rem; }
  .main-hero-image { max-width: 90%; margin-top: 1.5rem; }
  
  .cascading-block-1 { width: 88% !important; font-size: 1.15rem !important; padding: 1rem 0.5rem !important; }
  .cascading-block-2 { width: 94% !important; font-size: 1.15rem !important; padding: 1rem 0.5rem !important; }
  .cascading-block-3 { width: 100% !important; font-size: 1.15rem !important; padding: 1rem 0.5rem !important; }
  .blue-list-block.onboarding { padding-right: 3.5rem !important; }
  .onboarding-number { width: 3.2rem !important; height: 3.2rem !important; font-size: 1.5rem !important; }
  .check-icon { width: 22px !important; height: 22px !important; margin-left: 8px; }
}

@media screen and (max-width: 479px) {
  h1, h2 { font-size: 1.75rem; }
  .avatar-block { padding-left: 2rem; padding-right: 2rem; }
  .faq-question-wrapper-2 { grid-column-gap: 1rem; grid-row-gap: 1rem; }
  .blue-round-button { font-size: 1.1rem; }
  .faq-answer-text-2 { width: 100%; font-size: 1rem; }
  .faq-question-text-2 { font-size: 1.2rem; }
  .form-header { font-size: 1.5rem; }
  .form-footer { font-size: 1rem; }
  .blue-list-block { justify-content: flex-start; align-items: center; }
}


/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: #ffffff;
  padding: 1rem;
  z-index: 9999;
  display: none; /* Hidden by default, shown via JS */
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-content a {
  color: #10B981;
  text-decoration: underline;
}

.cookie-button {
  background-color: #10B981;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-button:hover {
  background-color: #059669;
}

.cookie-button.secondary {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  margin-left: 10px;
}

.cookie-button.secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

@media screen and (max-width: 767px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .cookie-button {
    width: 100%;
  }
}
/* Calculator UI */
.calculator-card { background: white; border-radius: 16px; padding: 3rem 2rem; box-shadow: 0 15px 40px rgba(0,0,0,0.08); margin-top: -3rem; position: relative; z-index: 20; }
.calc-input { width: 100%; height: 50px; font-size: 1.2rem; padding: 0 1rem; border: 2px solid #ddd; border-radius: 8px; background: #f9f9f9; outline: none; transition: border-color 0.2s; }
.calc-input:focus { border-color: var(--brand-green); background: white; }
.calc-button { width: 100%; background: var(--brand-green); color: white; border: none; border-radius: 8px; padding: 1rem; font-size: 1.4rem; font-weight: bold; cursor: pointer; transition: transform 0.2s, background 0.2s; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
.calc-button:hover { transform: translateY(-2px); background: #0e9f6e; }
.result-box { margin-top: 2rem; padding: 2rem; background: rgba(16, 185, 129, 0.1); border: 2px solid var(--brand-green); border-radius: 12px; text-align: center; animation: fadeIn 0.5s ease-in-out; }
.result-number { font-size: 3.5rem; font-weight: 900; color: var(--brand-green); margin-bottom: 0.5rem; direction: ltr; display: inline-block; }
.result-warning { font-size: 1.1rem; color: #444; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Guides Dropdown */
.guides-dropdown-wrapper { margin-top: 1.5rem; display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 0.5rem; }
.guides-select { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid #ccc; background-color: #f9f9f9; font-family: inherit; font-size: 1rem; cursor: pointer; transition: border-color 0.2s; min-width: 200px; text-align: right; direction: rtl; }
.guides-select:focus { outline: none; border-color: var(--brand-green); }
