:root {
  --bg: #ffffff;
  --panel: #f1f2f4;
  --card: #fbfbfc;
  --border: #dde1e8;
  --text: #212949;
  --muted: #6f7f9e;
  --pink: #FF1D56;
  --blue: #4567ff;
  --whatsapp: #11a949;
  --footer: #222a49;
  --shadow: 0 0 0 1px rgba(33, 41, 73, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto;
}

.section {
  padding: 30px;
}

.section-title {
  margin: 0 0 50px;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.98;
  text-align: center;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: -8px 0 30px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #EBEBEB;
  backdrop-filter: blur(8px);
}

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

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

.brand-mark {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.brand-mark.light {
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text span {
  font-size: 14px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--text);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-top: 10px;
}

.hero-copy h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(40px, 5vw, 104px);
  line-height: 1.2;
}

.hero-visual-wrap {
  display: flex;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  min-height: 400px;
  border-radius: 28px;
  background: #dfe8f3;
  position: relative;
  overflow: hidden;
}

.person {
  position: absolute;
  bottom: 0;
}

.person-left {
  left: 7%;
  width: 32%;
}

.person-right {
  right: 4%;
  width: 32%;
}

.head {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin: 0 auto -12px;
  background: radial-gradient(circle at 40% 35%, #f5d2bc 0 20%, #b07f67 60%, #7b5b4d 100%);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.08);
}

.body {
  width: 100%;
  height: 230px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
}

.person-left .arm {
  position: absolute;
  left: -10px;
  bottom: 72px;
  width: 85px;
  height: 28px;
  border-radius: 30px;
  background: #f0ceb5;
  transform: rotate(-22deg);
}

.person-right .point-arm {
  position: absolute;
  right: -8px;
  top: 118px;
  width: 105px;
  height: 32px;
  border-radius: 30px;
  background: #f0ceb5;
  transform: rotate(-18deg);
}

.play-award {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 170px;
  height: 205px;
  border-radius: 10px;
  background: linear-gradient(145deg, #e4c37a 0%, #c2852a 42%, #f0d28a 100%);
  box-shadow: inset 0 0 0 1px rgba(120, 77, 12, 0.15);
}

.play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(134, 79, 16, 0.9), rgba(172, 109, 24, 0.8));
  top: 42%;
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 15px;
  border-left: 16px solid #f6d9a6;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  height: 64px;
  padding: 0 50px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(33, 41, 73, 0.08);
}

.btn-whatsapp {
  color: var(--whatsapp);
  margin: 20px;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  border-color: transparent;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 24px 0 35px;
}

.stat-item strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

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

.channel-card,
.service-card,
.contact-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(33, 41, 73, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.channel-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}

.channel-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.avatar-red {
  background: radial-gradient(circle at 35% 35%, #fff 0 8%, #c62323 55%, #8b1010 100%);
}

.avatar-light {
  background: linear-gradient(135deg, #f6f7fa, #cfd6e6);
  color: #344;
}

.avatar-photo {
  background: linear-gradient(135deg, #4b647f, #111f32);
}

.avatar-blue {
  background: linear-gradient(135deg, #ff6b35, #3349c3);
}

.avatar-photo2 {
  background: linear-gradient(135deg, #8e6d5c, #e9d6cb);
  color: #1e263e;
}

.avatar-food {
  background: linear-gradient(135deg, #ffe163, #0f170e);
  color: #ffe163;
}

.avatar-gold {
  background: linear-gradient(135deg, #9f6a2f, #f7e4b8);
  color: #2b1f0d;
}

.avatar-black {
  background: #000;
}

.avatar-white {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}

.avatar-court {
  background: linear-gradient(135deg, #1a2432, #d8ad73);
}

.avatar-girl {
  background: linear-gradient(135deg, #b6a9a1, #edf1ff);
  color: #4c4f62;
}

.avatar-plus {
  background: #eceef5;
  color: var(--text);
  font-size: 28px;
}

.callout-card {
  background: rgba(255, 255, 255, 0.25);
}

.center-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.demo-btn {
  min-width: 190px;
  height: 58px;
  font-size: 17px;
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  padding: 34px 24px 32px;
}

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

.service-card {
  min-height: 108px;
  padding: 18px 18px 16px;
}

.service-icon {
  display: inline-block;
  color: var(--text);
  font-size: 34px;
  margin-bottom: 14px;
}

.service-card p,
.talk-card p {
  margin: 0;
  font-size: 19px;
}

.just-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px) 30px;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.just-text {
  text-align: center;
  color: var(--blue);
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 600;
}

.talk-card {
  min-height: 104px;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.55);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  justify-self: start;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.62fr;
  gap: 36px;
  align-items: start;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-item h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.cookie-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(33, 41, 73, 0.1);
}

.cookie-banner {
  background: #49354c;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 12px 12px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-card h3 {
  margin: 24px 0 10px;
  font-size: 26px;
}

.cookie-card p {
  margin: 0 0 24px;
  color: #41344b;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-accept {
  width: 100%;
  min-width: 0;
  height: 52px;
  border-radius: 14px;
  background: #49354c;
  color: #fff;
  border: none;
  font-size: 16px;
}

.cookie-settings {
  display: block;
  margin: 18px auto 0;
  border: none;
  background: none;
  text-decoration: underline;
  color: #49354c;
  font-size: 15px;
}

.pricing-wrap {
  background: radial-gradient(circle at left center, rgba(218, 221, 240, 0.8), rgba(245, 245, 246, 0) 35%);
  border-radius: 28px;
  padding: 10px 0 40px;
}

.price-card {
  width: min(560px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  border: 1px solid rgba(33, 41, 73, 0.1);
  overflow: hidden;
}

.price-card-head {
  padding: 24px 24px 22px;
  text-align: center;
  border-bottom: 1px solid rgba(33, 41, 73, 0.1);
}

.price-card-head h3,
.price-card-head strong {
  display: block;
  font-size: 20px;
  margin: 0;
  font-weight: 800;
}

.price-card-head strong {
  margin-top: 6px;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 12px 22px 20px;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  margin: 14px 0;
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.price-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-btn {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  min-width: 0;
  height: 58px;
  font-size: 18px;
}

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

.contact-card {
  min-height: 220px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.28);
}

.contact-bubble {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 18px;
}

.contact-bubble::before,
.contact-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.contact-bubble.blue {
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.65), rgba(34, 125, 255, 0.72));
}

.contact-bubble.blue::before {
  width: 58px;
  height: 58px;
  background: rgba(86, 157, 255, 0.85);
  right: -20px;
  top: -6px;
}

.contact-bubble.blue::after {
  width: 10px;
  height: 34px;
  background: rgba(255, 255, 255, 0.65);
  left: 35px;
  top: 20px;
  border-radius: 20px;
}

.contact-bubble.coral {
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.7), rgba(255, 149, 117, 0.72));
}

.contact-bubble.coral::before {
  width: 46px;
  height: 46px;
  background: rgba(255, 169, 132, 0.9);
  left: -14px;
  top: -6px;
}

.contact-bubble.coral::after {
  width: 64px;
  height: 36px;
  background: rgba(255, 184, 160, 0.9);
  left: 0;
  bottom: -12px;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

.contact-card a {
  text-decoration: underline;
  color: #2b6cff;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  margin-top: 26px;
}

.footer-inner {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  opacity: 0.95;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--text);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 80;
  font-size: 14px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .container {
    width: min(1280px, calc(100% - 60px));
  }

  .hero-grid,
  .work-grid,
  .just-row,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .channels-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .just-text {
    text-align: left;
  }

  .dot {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 30px 0;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

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

  .hero-visual {
    min-height: 320px;
  }

  .head {
    width: 80px;
    height: 80px;
  }

  .body {
    height: 180px;
  }

  .play-award {
    width: 135px;
    height: 165px;
  }

  .play-icon {
    width: 66px;
    height: 48px;
  }

  .play-icon::before {
    left: 27px;
    top: 13px;
  }

  .channels-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .channel-card,
  .service-card,
  .contact-card {
    border-radius: 20px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}




/* HERO IMAGE */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  aspect-ratio: 2 / 1;
}

/* CHANNEL IMAGES */
.channel-img {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  /* IMPORTANT */
  object-fit: cover;
  flex-shrink: 0;
}

/* PLUS CARD */
.channel-plus {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eceef5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
}

/* HOVER EFFECT (premium feel) */
.channel-card {
  transition: all 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}



/* ABOUT US SECTION */
.about-us {
  padding-top: 10px;
}

.about-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
  border-radius: 28px;
  padding: 36px 24px;
  border: 1px solid rgba(33, 41, 73, 0.08);
  box-shadow: var(--shadow);
}

.about-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-head .section-title {
  margin-bottom: 16px;
}

.about-head .section-subtitle {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.about-media {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.about-main-image,
.about-small-card,
.about-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(33, 41, 73, 0.09);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-main-image {
  min-height: 420px;
}

.about-small-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-small-card {
  min-height: 180px;
}

.about-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: 50% 20%;
}

.about-content {
  display: flex;
}

.about-card {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(69, 103, 255, 0.08);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.about-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(33, 41, 73, 0.06);
}

.about-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--text);
}

.about-point span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

/* TABLET */
@media (max-width: 1180px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    min-height: 360px;
  }
}

/* TELEFON */
@media (max-width: 860px) {
  .about-wrap {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .about-head {
    margin-bottom: 24px;
  }

  .about-main-image {
    min-height: 260px;
    border-radius: 20px;
  }

  .about-small-images {
    grid-template-columns: 1fr;
  }

  .about-small-card {
    min-height: 180px;
    border-radius: 20px;
  }

  .about-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .about-card h3 {
    font-size: 28px;
  }

  .about-card p {
    font-size: 15px;
  }

  .about-actions {
    margin-top: 20px;
  }

  .about-actions .btn {
    width: 100%;
  }
}


/* SLIDER */
.results-slider {
  position: relative;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 400px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide.active {
  opacity: 1;
}

/* BUTOANE */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 26px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* MOBILE */
@media (max-width: 860px) {
  .slider-track {
    height: 250px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}