/* VARIABLES: Soft Clay / Neumorphism 2.0 */
:root {
  --bg: #fff8f0; /* Warm White / Shell */
  --bg-alt: #f2e8e4; /* Soft Grey/Pinkish */
  --bg-dark: #2a2a2a; /* Soft Black */

  --primary: #ff9f85; /* Soft Coral/Peach */
  --primary-hover: #ff8666;
  --secondary: #a0e8af; /* Soft Mint */
  --accent: #d4c1ec; /* Soft Lavender */

  --text: #4a4a4a; /* Dark Grey */
  --text-light: #888;

  --radius: 24px; /* Big rounded corners */
  --shadow: 0 10px 40px rgba(100, 100, 100, 0.08);
  --shadow-hover: 0 15px 50px rgba(100, 100, 100, 0.15);

  --font-main: "Quicksand", sans-serif;
  --font-body: "Nunito", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

p {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.05rem;
}
.lead {
  font-size: 1.2rem;
  max-width: 600px;
  font-weight: 600;
}
.sub-h {
  font-size: 1.1rem;
  color: #888;
}
.color-span {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--secondary);
}

/* UTILS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 700px;
  margin: 0 auto;
}
.section {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.bg-soft-grey {
  background: var(--bg-alt);
}
.bg-soft-blue {
  background: #e0f7fa;
}
.full {
  width: 100%;
}

/* BUTTONS (Pill Shaped) */
.btn-primary-soft {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(255, 159, 133, 0.4);
  transition: 0.3s;
  text-align: center;
  border: 2px solid var(--primary);
}
.btn-primary-soft:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

.btn-sec-soft {
  display: inline-block;
  background: #fff;
  color: var(--text);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border: 2px solid #fff;
  text-align: center;
}
.btn-sec-soft:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  color: var(--text);
}

.btn-soft {
  background: var(--bg-alt);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--text);
}
.btn-border {
  padding: 15px 35px;
  border-radius: 50px;
  border: 2px solid var(--text);
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
.btn-border:hover {
  background: var(--text);
  color: #fff;
}

.link-soft {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

/* HEADER */
.bubble-alert {
  background: var(--secondary);
  color: #005533;
  text-align: center;
  padding: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 20px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
}
.head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}
.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.nav-pills {
  display: flex;
  gap: 10px;
}
.nav-pills a {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  transition: 0.2s;
}
.nav-pills a:hover {
  background: var(--bg);
  color: var(--primary);
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-blob {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero {
  padding-top: 60px;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tag-soft {
  display: inline-block;
  background: #e0f2f1;
  color: #00695c;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.hero-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-img {
  position: relative;
}
.blob-shape img {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,71.5,33.4C60.8,45.3,50.7,56.2,38.9,64.2C27.1,72.2,13.6,77.3,-0.6,78.4C-14.8,79.4,-29.6,76.5,-42.6,69.5C-55.6,62.5,-66.8,51.4,-75.4,38.6C-84,25.8,-90,11.3,-88.9,-2.7C-87.7,-16.7,-79.4,-30.2,-69.3,-41.8C-59.2,-53.4,-47.3,-63.1,-34.3,-70.8C-21.3,-78.5,-7.2,-84.2,5.2,-93.2L17.6,-102.2Z' transform='translate(100 100)' /%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  border-radius: 0;
}
.floating-card {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  animation: float 4s ease-in-out infinite;
}
.floating-card i {
  color: var(--primary);
}
.c1 {
  top: 20%;
  left: 0;
}
.c2 {
  bottom: 20%;
  right: 0;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* TICKER */
.wavy-ticker {
  background: var(--secondary);
  padding: 15px 0;
  overflow: hidden;
  margin-top: 40px;
  transform: rotate(-1deg);
}
.ticker-content {
  white-space: nowrap;
  font-weight: 700;
  color: #004d40;
  font-size: 1.1rem;
  animation: slide 20s linear infinite;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CARDS (IDEA) */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.soft-card {
  padding: 40px 30px;
  border-radius: var(--radius);
  transition: 0.3s;
}
.soft-card:hover {
  transform: translateY(-10px);
}
.soft-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.bg-peach {
  background: #ffe5d9;
}
.bg-mint {
  background: #e8f5e9;
}
.bg-lavender {
  background: #f3e5f5;
}

/* LIFE CASES */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phone-mockup {
  background: #fff;
  border-radius: 40px;
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 300px;
  margin: 0 auto;
  border: 8px solid #f0f0f0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.chat-bubble {
  padding: 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  position: relative;
}
.left {
  background: #efefef;
  align-self: flex-start;
  border-bottom-left-radius: 0;
  margin-right: 20px;
}
.right {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 0;
  margin-left: 20px;
}
.pill-list li {
  margin-bottom: 15px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.note-box {
  background: #fff3e0;
  padding: 15px;
  border-radius: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #e65100;
  text-align: center;
}

/* QUIZ */
.quiz-pill-container {
  background: #fff;
  border-radius: 40px;
  padding: 60px;
  box-shadow: var(--shadow);
  text-align: center;
}
.quiz-top {
  margin-bottom: 40px;
}
.qs-slide {
  display: none;
  animation: popIn 0.4s;
}
.qs-slide.active {
  display: block;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.qs-slide h5 {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.qs-slide button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 15px;
  padding: 15px;
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #555;
  transition: 0.2s;
}
.qs-slide button:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}
.emoji-res {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* STEPS */
.steps-bubbles {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sb-item {
  text-align: center;
  width: 30%;
}
.sb-num {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}
.connector {
  flex-grow: 1;
  height: 4px;
  background: #fff;
  margin-top: 30px;
  border-radius: 2px;
  opacity: 0.5;
}

/* BLOG */
.header-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.blog-cards-soft {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.b-soft {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.b-soft:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.bs-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.c-1 {
  background-color: #ffcdd2;
} /* Placeholder colors instead of images to keep code clean or images */
.c-2 {
  background-color: #c8e6c9;
}
.c-3 {
  background-color: #bbdefb;
}
.bs-body {
  padding: 25px;
}
.bs-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

/* TARIFFS */
.tariffs-soft {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.t-pill {
  background: #fff;
  padding: 40px 30px;
  border-radius: 40px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}
.t-pill.main {
  border-color: var(--primary);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
}
.badge-pop {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.tp-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 20px 0;
  font-family: var(--font-main);
}
.t-pill ul {
  text-align: left;
  margin-bottom: 30px;
}
.t-pill li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #666;
}
.t-pill li::before {
  content: "●";
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 4px;
}

/* FAQ */
.faq-bubbles details {
  background: #fff;
  padding: 20px 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: 0.3s;
}
.faq-bubbles details[open] {
  background: #fff3e0;
}
.faq-bubbles summary {
  font-weight: 700;
  list-style: none;
  outline: none;
}
.faq-bubbles p {
  margin-top: 15px;
  margin-bottom: 0;
}

/* CONTACT */
.contact-bubble {
  background: #fff;
  border-radius: 40px;
  padding: 60px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contacts-list {
  margin-top: 40px;
}
.cl-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
  color: #666;
}
.cl-row i {
  color: var(--primary);
}
.cl-row a {
  border-bottom: 1px solid #ddd;
}

.soft-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inp-wrapper label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  margin-left: 10px;
}
.inp-wrapper input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #f0f0f0;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fafafa;
}
.inp-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.chk-wrapper {
  font-size: 0.9rem;
  margin-left: 10px;
}
.chk-wrapper a {
  color: var(--primary);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  padding: 80px 0 20px;
  background: var(--bg-dark);
  color: #fff;
  margin-top: 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.footer-cont {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.f-logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
  color: var(--primary);
}
.footer h5 {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer a {
  display: block;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 0.9rem;
}
.footer a:hover {
  color: #fff;
  transform: translateX(5px);
}
.contact-col p {
  color: #ddd;
  margin-bottom: 10px;
}
.footer-copy {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #777;
  font-size: 0.8rem;
}

/* MOBILE MENU */
.bubble-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy effect */
}
.bubble-menu.active {
  transform: translateY(0);
}
#closeBubble {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-alt);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.bubble-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.bubble-menu a {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.bm-info {
  margin-top: 40px;
  color: #aaa;
}

/* COOKIE */
.cookie-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-hover);
  z-index: 5000;
  display: none;
  align-items: center;
  gap: 15px;
}
#acceptCookie {
  background: var(--secondary);
  color: #004d40;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-pills,
  .head-actions .btn-soft {
    display: none;
  }
  #menuTog {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }
  .hero-wrapper,
  .grid-2,
  .split-layout,
  .cards-row,
  .blog-cards-soft,
  .tariffs-soft,
  .contact-bubble,
  .footer-cont {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 40px;
  }
  .hero-img {
    order: -1;
  }
  .reverse-mob {
    display: flex;
    flex-direction: column-reverse;
  }
  .phone-mockup {
    width: 100%;
    min-height: 300px;
  }

  h2 {
    font-size: 1.7rem;
  }

  .steps-bubbles {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .sb-item {
    width: 100%;
  }
  .connector {
    width: 4px;
    height: 30px;
    margin: 0;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}
