/* ==========================================================================
   IMPORTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #22212a;
  background-color: #fff;
}

section {
  padding: 1.5rem 3rem;
}

hr {
  border-top: 1px solid #f0f0f0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}


/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.sec-container,
.looty,
.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
}

.between {
  display: flex;
  justify-content: space-between;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
}

.center {
  display: flex;
  justify-content: center;
}

.evenly {
  display: flex;
  justify-content: space-evenly;
}

.alcenter {
  display: flex;
  align-items: center;
}

.alstart {
  display: flex;
  align-items: flex-start;
}

.gap3 {
  gap: 10px;
}

.pad {
  padding: 0.5rem 5rem;
}

.column {
  display: flex;
  flex-direction: column;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.blue {
  position: relative;
  height: 59px;
  width: 100%;
  z-index: 999999999;
}

.blue img {
  height: 59px;
  width: 100%;
}

.first {
  background: #f9f9f9;
  font-weight: 500;
  border-bottom: 1px solid #ececec;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #22212a;
}

.second {
  position: relative;
  min-height: 120px;
  background: #fff;
  z-index: 999999999;
  margin: auto;
}

.logo-section {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-cotent:center;
}

.logo img{
  width:250px;
  height:35px;
}
.partner-text {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.rating-section {
  display: flex;gap:5px;
  align-items: center;
}

.rating-badge {
  width: 40px;
  height: 40px;
  background: #fc3f1d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.rating-stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}

.yandex-link {
  color: #ff6b35;
}

.question-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
}

.question-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #666;
}

.ask-online {
  font-size: 11px;
  color: #999;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.telegram {
  background: #0088cc;
}

.contact-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.email {
  font-size: 12px;
  color: #666;
}

.call-button {
  background: #6b46c1;
  color: #fff;
  border: none;
  width: 183px;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.call-button:hover {
  background: #5b3aa1;
}

.third {
  min-height: 50px;
}

.nav-link {
  color: #22212a;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #666;
}

.nav-link.active {
  color: #2bb24c;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #2bb24c;
  border-radius: 0 0 2px 2px;
}

.nav-icon {
  margin-right: 4px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin: auto;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid #6b46c1;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: #6b46c1;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu {
  display: none;
}

#mobrating,
#mobtext {
  display: none;
}

#rating,
#text {
  display: static;
  position: absolute;
}


/* ==========================================================================
   BANNER
   ========================================================================== */

.banner {
  position: relative;
  margin-bottom: 1rem;
}

.banner-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  max-width: 780px;
}

.banner-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.banner-inner {
  position: relative;
  max-width: 800px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 40px 0;
  z-index: 8;
}

.banner-heading {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 707px;
  min-width: 290px;
  margin-bottom: 1rem;
}

.banner-subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.banner-form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.banner-input-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 1rem;
}

.banner-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 12px 24px;
  min-width: 250px;
  max-width: 290px;
  height: 50px;
}

.banner-input-icon {
  color: #fff;
  margin-right: 8px;
}

.banner-input {
  border: none;
  font-size: 14px;
  background: none;
  font-weight: 600;
  color: #fff;
}

.banner-input:after {
  border: none;
}

.banner-submit {
  background: #731982;
  color: #fff;
  border: none;
  height: 50px;
  min-width: 250px;
  max-width: 290px;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.banner-note {
  font-size: 11px;
  opacity: 0.9;
}

.banner-note-link {
  color: #ffffff;
  text-decoration: underline;
}


/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */

.video-section {
  background: #ffffff;
}

.video-wrapper {
  max-width: 780px;
  max-height: 440px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #181820;
  border-radius: 40px;
  overflow: hidden;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: #029b42;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play-button:hover {
  background: rgb(6, 131, 58);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
  margin-left: 4px;
}


/* ==========================================================================
   RECEIVE SECTION
   ========================================================================== */

.receive-section {
  background: #ffffff;
}

.receive-card {
  width: 100%;
  min-height: 342px;
  margin: 0 auto;
  background: linear-gradient(90deg, #00b14f 0%, #02c866 100%);
  border-radius: 33px;
  padding: 24px 24px 0px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  color: #ffffff;
}

.receive-content {
  flex: 1 1 55%;
}

.receive-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.receive-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7c2cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.receive-step-text {
  font-size: 14px;
  line-height: 1.6;
}

.receive-note {
  margin-top: 16px 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
}

.receive-illustration {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.receive-illustration img {
  max-width: 500px;
  min-width: 200px;
  margin: 0 auto;
}


/* ==========================================================================
   TARIFF SECTION
   ========================================================================== */

.tariff-header {
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: space-between;
}

.tariff-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #731982;
  background: #f7f2ff;
  padding: 10px 16px;
  border-radius: 999px;
}

.tariff-note-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #c88cff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #c88cff;
}

.tariff-carousel {
  display: none;
}

.tariff-grid {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.tariff-card {
  position: relative;
  padding-top: 20px;
  width: 280px;
  margin-top: 2rem;
}

.tariff-badge {
  position: absolute;
  top: -20px;
  right: 19px;
  width: 88px;
  height: 39px;
  padding: 6px 14px;
  background: #01a349;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px 5px 0 0;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.tariff-card-inner {
  background: #f9f9f9;
  border: 1px solid #efefef;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.tariff-card-inner p {
  text-align: center;
  font-size: 14px;
  color: #22212a;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 0;
}

.tariff-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.tariff-main {
  position: relative;
  background-image: url("./img/tarrif.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  padding: 16px 0;
  width: 240px;
  height: 175px;
  margin: 0 auto 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.tarrif-title {
  text-align: center;
  z-index: 10;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 20%);
}

.tariff-gb {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}

.tarriff-inside {
  margin: 8px 0;
  padding: 0 16px;
}

.tariff-main-left {
  display: flex;
  align-items: center;
}

.tariff-main-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tariff-main-right img {
  width: 82px;
  height: 53px;
  object-fit: contain;
}

.tariff-price {
  height: 30px;
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

.tariff-main-devices {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 145px;
  height: 62px;
  padding: 6px 0;
  background: #029b42;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.tariff-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  gap: 4px;
  font-size: 11px;
  color: #ffffff;
}

.tariff-device:first-child {
  position: relative;
  padding-right: 10px;
}

.tariff-device:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.8);
}

.tariff-device i {
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  color: #22212a;
  width: 32px;
  height: 32px;
  font-size: 16px;
  position: relative;
  top: 50%;
}

.tariff-features {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #22212a;
  font-weight: 500;
}

.tariff-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tariff-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 20%;
  background: #029b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.tariff-feature-icon i {
  font-size: 18px;
}

.tariff-button {
  width: 100%;
  border: none;
  border-radius: 24px;
  background: #7a1ea1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  cursor: pointer;
  margin-top: auto;
}

.tariff-button:hover {
  background: #66198a;
}

/* Carousel Styles - Desktop: hidden */
.tariff-arrow {
  display: none;
}

.tariff-dots {
  display: none;
}


/* ==========================================================================
   FORMALIZATION SECTION
   ========================================================================== */

.formalization-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #22212a;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.formalization-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;justify-items: center;
}

.formalization-step {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  min-width: 290px;
  height: 100%;
  max-height: 605px;
  min-height: 195px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}



/* Grid Areas for Steps */
/* Top Row: Steps 01, 02, 03 */
.div1 {
  grid-area: 1 / 1 / 3 / 5;
}

.div2 {
  grid-area: 1 / 5 / 4 / 9;
}

.div3 {
  grid-area: 1 / 9 / 5 / 13;
}

/* Middle Area: Steps 04, 05, 06 */
.div4 {
  grid-area: 3 / 1 / 7 / 5;
}

.div5 {
  grid-area: 4 / 5 / 7 / 9;
}

.div6 {
  grid-area: 5 / 9 / 11 / 13;
}

/* Bottom Row: Steps 07, 08, 09 */
.div7 {
  grid-area: 7 / 1 / 12 / 5;
}

.div8 {
  grid-area: 7 / 5 / 12 / 9;
}

.div9 {
  grid-area: 11 / 9 / 12 / 13;
}

.step-number {
  color: #029b42;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.step-left {
  padding: 24px 24px 0 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  overflow: hidden;
}

.step-last {
  padding: 28px 28px 0 28px;
  display: flex;
  position: relative;
  flex: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #22212a;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.step-description {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
  line-height: 1.5;
}

.step-image {
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 1;
}

.step-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin-top: 16px;
}

.under {
  padding-bottom: 28px;
}

.step-title-main {
  font-size: 18px;
  font-weight: 700;
  color: #800080;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: inline-block;
}

.step-title-sub {
  font-size: 15px;
  font-weight: 400;
  color: #22212a;
  line-height: 1.5;
  margin: 0;
}

.step-icon-wifi {
  position: absolute;
  bottom: 24px;
  left: 24px;
  opacity: 0.8;
}

.step-split .step-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px 28px 28px;
}

.step-split .step-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 0 0 28px;
}

.step-split .step-illustration img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.step-05-special {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.step-05-special .step-left {
  padding: 24px;
  flex: 1;
  position: relative;
}

.step-05-special .step-number {
  font-size: 32px;
  margin-bottom: 12px;
}

.step-05-special .step-title-sub {
  font-size: 16px;
  font-weight: 400;
  color: #22212a;
  margin-bottom: 12px;
}

.step-button {
  border: 2px solid #8a2be2;
  border-radius: 20px;
  color: #8a2be2;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
}

.step-button:hover {
  background: #8a2be2;
  color: #ffffff;
}

.step-05-special .step-right {
  background: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  padding: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.step-05-special .step-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.step-05-special .step-illustration img {
  width: auto;
  max-width: 180px;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-grid {
  width: 100%;
  margin: 0 auto;
}

.resources-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 60px;
  grid-row-gap: 8px;
  counter-reset: faq-counter;
}

/* Formalization grid – tablet layout (2 columns) */
@media (max-width: 1200px) and (min-width: 769px) {
  .formalization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .formalization-grid .formalization-step {
    grid-area: auto !important;
    height: auto;
    max-height: none;
  }
}

.resources-item-wrapper {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.faq-item-header {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  column-gap: 12px;
}

.faq-number::before {
  counter-increment: faq-counter;
  content: counter(faq-counter, decimal-leading-zero);
  font-size: 18px;
  font-weight: 600;
  color: #029b42;
}

.resources-item {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #22212a;
  text-decoration: none;
}

.faq-toggle::before {
  content: ">";
  display: inline-block;
  font-size: 40px;
  color: #00b341;
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.resources-item-wrapper.active .faq-toggle::before {
  transform: rotate(270deg);
}

.resources-item-wrapper.active .resources-item {
  color: #58068c;
}

.description {
  font-size: 14px;
  font-weight: 500;
  color: #22212a;
  margin-left: 3.2rem;
  margin-top: 8px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #f6f6f6;
  margin-top: auto;
}

.footer-main {
  padding: 40px 3rem;
  border-bottom: 1px solid #e6e6e6;
}

.footer-row {
  margin-bottom: 20px;
}

.footer-columns {
  gap: 40px;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  position: relative;
  min-height: 12rem;
}

.footer-logo .logo {
  font-size: 24px;
}

.footer-partner-text {
  font-size: 13px;
  color: #22212a;
  margin-bottom: 20px;
}

.footer-contact {
  margin-top: 16px;
}

.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.footer-email {
  font-size: 12px;
  color: #666;
}

.footer-button {
  border: 1px solid #58068c;
  color: #58068c;
  padding: 15px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #22212a;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  color: #22212a;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #22212a;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #6b46c1;
}

.footer-addresses {
  margin-bottom: 16px;
}

.footer-addresses p {
  font-size: 13px;
  color: #22212a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-hours {
  margin-bottom: 16px;
}

.footer-hours p {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-rating {
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}



.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-column .text {
  color: #999999;
  font-size: 14px !important;
  font-weight: 500;
  position: absolute;
  bottom: 0;
}

.payment-badge img {
  width: 67px;
  height: 36px;
}

.footer-bottom {
  padding: 20px 3rem;
}

.footer-bottom-content {
  gap: 20px;
}

.footer-note p,
.footer-copyright p {
  font-size: 12px;
  color: #999999;
  margin: 0;
}

.footer-note {
  max-width: 520px;
}

.footer-privacy {
  font-size: 12px;
  color: #22212a;
  text-decoration: underline;
}

.green-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #59df3f;
}


/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
}

.overlay.show {
  display: block;
  opacity: 1;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.close-btn.active {
  display: flex;
}

.hamburger.non-active {
  opacity: 0;
  display: none;
}

.menu-contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.call-button.full-width {
  width: 100%;
  max-width: none;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.menu-link {
  color: #22212a;
  font-size: 16px;
  text-decoration: none;
}

.menu-question {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


/* ==========================================================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ========================================================================== */

/* Banner Responsive */
@media (max-width: 1050px) {
  .banner {
    background-image: url(./img/lilbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 704px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .banner-img {
    left: 0;
    width: 70%;
    max-width: 600px;
    min-width: 310px;
    margin: 0 auto;
  }
}
@media(max-width:680px){
  .tariff-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .tariff-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }
  .tariff-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
}
}

@media(max-width:680px){
  .onbigscreen{
    display:none!important;
  }
}
@media (min-width: 1050px) {
  .banner {
    background-image: url(./img/bigbanner.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 1200 / 480;
    max-height: 480px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   RESPONSIVE - TABLET & MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  hr {display:none;}
  /* Layout Utilities */
  .pad {
    padding: 0;
  }

  section {
    padding: 0.5rem 1rem !important;
  }

  /* Typography */
  h2 {
    font-size: 25px;
    text-align: center;
  }

  span {
    text-align: center;
  }

  /* Header & Navigation */
  nav {
    padding: 0;
  }

  .third {
    padding: 14px 1.5rem;
  }

  .first {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu.show {
    display: flex;
    position: relative;
    width: 100%;
    height: 619px;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    z-index: 1001;
  }

  .second {
    padding: 2rem 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .rating-section,
  #question {
    display: none;
  }

  .contact-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center !important;
    margin: 0 auto;
  }

  .call-button {
    width: 290px;
  }

  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem !important;
    width: 100%;
  }

  #rating,
  #text {
    display: none;
    position: static;
  }

  #mobrating,
  #mobtext {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* Banner */
  .banner {
    background-image: url(./img/lilbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .banner-heading {
    font-size: 31px;
  }

  .banner-subtitle {
    font-size: 23px;
  }

  .banner-input-row {
    flex-direction: column;
  }

  .banner-submit {
    width: 100%;
    text-align: center;
  }

  .banner-kicker,
  .banner-heading,
  .banner-subtitle,
  .banner-form-title,
  .banner-note {
    text-align: center;
  }

  /* Video Section */
  .video-placeholder {
    border-radius: 24px;
  }

  /* Tariff Section - Carousel on Mobile */
  .tariff-note {
    display: flex;
    justify-content: center;
  }

  .tariff-section {
    padding: 24px 1.5rem 32px;
  }

  /* Show carousel on mobile */

  .carousel-container {
    width: 300px;
    position: relative;
    overflow: hidden;
  }

  #track.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
  }



  .tariff-card {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
  }

  /* Carousel Navigation Arrows */
  .tariff-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #6b46c1;
    color: #6b46c1;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .tariff-arrow:hover {
    background: #6b46c1;
    color: #fff;
  }

  .tariff-arrow-prev {
    left: -15px;
  }

  .tariff-arrow-next {
    right: -15px;
  }

  /* Carousel Dots */


  .tariff-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .tariff-dot.active {
    background: #6b46c1;
  }

  .tariff-header {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
  }

  .tariff-name {
    font-size: 16px;
  }

  .tariff-card-inner {
    max-width: 320px;
    margin: 0 auto;
  }

  .tariff-main {
    max-width: 260px;
  }

  /* Formalization Section */
  .formalization-title {
    font-size: 25px;
    margin-bottom: 2rem;
  }

  .formalization-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  /* On small screens we ignore the complex 12x12 grid placement
     so that steps simply flow one after another */
  .formalization-grid .formalization-step {
    grid-area: auto !important;
    height: auto;
    max-height: none;
  }

  .step-split:not(.step-05-special) {
    flex-direction: column;
  }

  .step-05-special .step-right {
    position: relative;
    width: 100%;
    height: auto;
    padding: 16px;
  }

  /* FAQ Section */
  .resources-items {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-main {
    padding: 32px 1.5rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-logo,
  .footer-logo .logo,
  .footer-partner-text {
    text-align: center;
  }

  .question-section {
    justify-content: center;
  }

  .footer-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-column {
    width: 100%;
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .foot,
  .footer-addresses,
  .footer-hours,
  .footer-rating,
  .footer-payments,
  .footer-column .text {
    align-items: center;
    text-align: center;
  }

  .footer-rating {
    justify-content: center;
  }

  .footer-bottom {
    padding: 16px 1.5rem 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Receive Section Responsive */
@media (max-width: 900px) {
  .receive-card {
    flex-direction: column;
  }
}

/* Tariff Section Responsive */
@media (max-width: 1120px) {
  .tariff-card {
    width: 280px;
  }
}
