:root {
  --fucsia: #d93b7d;
  --fucsia-soft: #f2d4e1;
  --turquesa: #7fc6c4;
  --turquesa-strong: #1db7b3;
  --turquesa-soft: #d8efee;
  --beige: #f3e8dd;
  --beige-soft: #f7efe8;
  --text: #1f2937;
  --text-soft: #667085;
  --white: #ffffff;
  --bg: #f5f7f8;
  --border: #e4e7eb;
  --shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.05);
  --radius: 24px;
  --container: 1180px;
  --container-narrow-grid: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

button {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.narrow-grid {
  max-width: var(--container-narrow-grid);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 231, 235, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 130px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  font-weight: 500;
}

.main-nav a {
  color: var(--text);
}

.main-nav a:hover {
  color: var(--fucsia);
}

.nav-cta {
  background: var(--fucsia);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
  background: var(--turquesa-strong);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lang-switcher a {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text-soft);
}

.lang-switcher a:hover {
  color: var(--fucsia);
  background: var(--fucsia-soft);
}

.lang-switcher .active {
  color: var(--fucsia);
  background: var(--fucsia-soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(228, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 6px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(228, 231, 235, 0.65);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--fucsia);
  color: var(--white) !important;
  border-radius: 999px;
  padding: 14px 18px !important;
  border-bottom: 0 !important;
}

.mobile-nav-cta:hover {
  background: var(--turquesa-strong);
}

/* GENERAL */

section {
  padding: 78px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-tight-top {
  padding-top: 28px;
}

.section-tight-bottom {
  padding-bottom: 48px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--fucsia);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.center {
  text-align: center;
}

.section-heading-narrow {
  max-width: 760px;
}

.section-heading.center.section-heading-narrow {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.15;
}

.section-intro {
  color: var(--text-soft);
  margin-top: 12px;
  max-width: 760px;
}

.section-intro-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-card,
.service-card,
.step-card,
.testimonial-card,
.faq-item,
.feature-box,
.blog-card {
  background: var(--white);
  border: 1px solid rgba(228, 231, 235, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* HERO */

.hero {
  padding: 76px 0 64px;

  background:
    linear-gradient(
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.88)
    ),
    url('/images/therapy-background.jpg');

  background-size: cover;
  background-position: center;
}
.hero h1 {
  text-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hero-text {
  text-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-bullets span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(228,231,235,0.9);
  border-radius: 26px;

  box-shadow: 0 18px 40px rgba(15,23,42,0.10);
}

.card-accent {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fucsia), var(--turquesa));
  opacity: 0.18;
  position: absolute;
  top: -16px;
  right: -16px;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}

.hero-card p {
  color: #4b5563;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--turquesa-strong);
  letter-spacing: 0.3px;
}

/* BUTTONS */

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--fucsia);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--turquesa-strong);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217, 59, 125, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--turquesa-strong);
  color: var(--turquesa-strong);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--text);
}

.btn-light:hover {
  color: var(--text);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* TRUST */

.trust-section p,
.about-preview p,
.faq-item p,
.service-card p,
.step-card p,
.testimonial-card p {
  color: var(--text-soft);
}

.trust-section-bg {
  position: relative;
  overflow: hidden;
  background-image: url('/images/online-therapy.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.trust-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
}

.trust-content {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-box {
  padding: 20px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 249, 0.9));
}

/* CARDS / GRIDS */

.cards-grid,
.services-premium-grid,
.steps-grid,
.steps-premium-grid {
  max-width: var(--container-narrow-grid);
  margin: 0 auto;
}

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

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.steps-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.testimonial-card,
.step-card,
.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.testimonial-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.service-card:hover {
  border-color: rgba(217, 59, 125, 0.25);
}

.service-card,
.testimonial-card,
.step-card {
  padding: 28px;
}

.service-card-premium {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 247, 0.96));
}

.service-card h3,
.testimonial-card h3,
.step-card h3,
.faq-item h3 {
  margin-top: 0;
  line-height: 1.25;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fucsia), var(--turquesa));
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--fucsia-soft);
  color: var(--fucsia);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-points {
  margin: 2px 0 4px;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-points li {
  margin-bottom: 8px;
}

.text-link {
  color: var(--fucsia);
  font-weight: 700;
  transition: color 0.25s ease;
}

.text-link:hover,
.service-card-link:hover .text-link,
.service-card:hover .text-link {
  color: var(--turquesa-strong);
}

/* STEPS */

.steps-section-premium {
  background: linear-gradient(180deg, #e5f3f2, #f6fbfb);
}

.step-card-premium {
  position: relative;
  padding: 30px 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 247, 0.95));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--fucsia-soft);
  color: var(--fucsia);
  font-weight: 700;
  margin-bottom: 14px;
}

.step-line {
  position: absolute;
  top: 42px;
  right: -24px;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 198, 196, 0.45), rgba(127, 198, 196, 0));
}

.step-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--turquesa-strong);
  letter-spacing: 0.2px;
}

.step-card-premium h3 {
  margin-bottom: 10px;
}

.steps-centered .step-card {
  text-align: center;
}

.steps-centered .step-number,
.steps-centered .step-label {
  margin-left: auto;
  margin-right: auto;
}

/* TESTIMONIALS */

.testimonials-section {
  background: linear-gradient(180deg, #f1e5d9 0%, #f8eee7 100%);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--turquesa-strong);
  margin-bottom: 12px;
  font-weight: 700;
}

/* ABOUT */

.about-preview {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.about-text {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.32));
  border: 1px solid rgba(228, 231, 235, 0.9);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.credential {
  background: #d3ecea;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 241, 243, 0.96));
  border: 1px solid rgba(221, 228, 231, 0.95);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* CTA */

.cta-section {
  padding-top: 30px;
  padding-bottom: 10px;
}

.cta-box {
  background: linear-gradient(135deg, var(--fucsia), var(--turquesa-strong));
  color: var(--white);
  text-align: center;
  padding: 54px 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.cta-box p {
  margin-bottom: 24px;
  opacity: 0.96;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* PAGE */

.page-hero {
  padding-bottom: 26px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.page ul {
  padding-left: 20px;
}

.page li {
  margin-bottom: 10px;
}

.anxiety-depression-page .page-hero {
  padding-top: 64px;
  padding-bottom: 52px;
}

/* BLOG */

.blog-grid {
  max-width: var(--container-narrow-grid);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 251, 0.98));
  border: 1px solid rgba(228, 231, 235, 0.96);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.blog-card-link {
  display: block;
  height: 100%;
}

.blog-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f4;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--fucsia-soft);
  color: var(--fucsia);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-content h3 {
  margin: 0 0 12px;
  line-height: 1.25;
  font-size: 1.45rem;
}

.blog-content p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.blog-readmore {
  color: var(--fucsia);
  font-weight: 700;
}

.blog-card:hover .blog-readmore {
  color: var(--turquesa-strong);
}

/* CONTACT */

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--turquesa-strong);
  box-shadow: 0 0 0 4px rgba(29, 183, 179, 0.12);
}

/* FOOTER */

.site-footer {
  padding: 28px 0;
  margin-top: 26px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #20ba5a;
  color: white;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    font-size: 0.92rem;
  }

  .logo img {
    height: 58px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .about-grid,
  .features-grid,
  .cards-grid,
  .services-premium-grid,
  .steps-grid,
  .steps-premium-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    min-height: auto;
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 52px 0;
  }

  .section-tight {
    padding: 52px 0;
  }

  .section-tight-bottom {
    padding-bottom: 34px;
  }

  .header-inner {
    min-height: 78px;
  }

  .header-right {
    gap: 10px;
  }

  .logo img {
    height: 90px;
  }

  .lang-switcher {
    font-size: 0.84rem;
  }

  .lang-switcher a {
    padding: 6px 9px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .whatsapp-float {
    text-align: center;
  }

  .cta-box {
    padding: 38px 18px;
  }

  .whatsapp-float {
    right: 16px;
    left: 16px;
    bottom: 16px;
    border-radius: 16px;
  }
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-description {
  color: var(--text-soft);
  margin-top: 10px;
  max-width: 360px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col strong {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 16px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-location {
  color: var(--text-soft);
}

@media (max-width: 900px) {

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

}
.contact-success {
  background: #e6f7f5;
  border: 1px solid #bfe9e4;
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 600;
  color: #0f766e;
}

.contact-error {
  background: #fde8ec;
  border: 1px solid #f5c2cc;
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 600;
  color: #b4233a;
}