/* :: hero badge :: */
.trial-offer-section{
    padding:18px 0 10px;
    background:#f8faff;
}

.trial-offer-box{
    max-width:1060px;
    margin:0 auto;
    padding:24px 28px;
    border-radius:20px;
    border:1px solid #dfe7ff;
    background:
        radial-gradient(circle at 82% 18%, rgba(139,92,246,.10), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#fbfcff 100%);
    box-shadow:0 14px 38px rgba(31,51,122,.06);
    display:grid;
    grid-template-columns:minmax(0,1fr) 180px 150px;
    gap:20px;
    align-items:center;
}

.trial-content{
    min-width:0;
}

.trial-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 14px;
    border-radius:999px;
    background:rgba(91,84,255,.08);
    color:#5b54ff;
    font-size:12px;
    font-weight:800;
    margin-bottom:12px;
}

.trial-offer-box h2{
    font-size:34px;
    line-height:1.05;
    margin:0 0 8px;
    color:#111827;
    letter-spacing:-.3px;
}

.trial-content p{
    margin:0;
    max-width:560px;
    font-size:15px;
    line-height:1.45;
    color:#5f6675;
    font-weight:600;
}

.trial-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
}

.trial-feature{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:.25s ease;
    border:1px solid transparent;
}

.trial-feature span:last-child{
    color:#1f2937;
}

.hosting-feature{
    background:rgba(59,130,246,.08);
    border-color:rgba(59,130,246,.18);
}

.hosting-feature:hover{
    background:#3b82f6;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(59,130,246,.18);
}

.hosting-feature:hover span:last-child{
    color:#fff;
}

.email-feature{
    background:rgba(139,92,246,.08);
    border-color:rgba(139,92,246,.18);
}

.email-feature:hover{
    background:#8b5cf6;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(139,92,246,.18);
}

.email-feature:hover span:last-child{
    color:#fff;
}

.feature-icon{
    width:14px;
    height:14px;
    display:block;
    position:relative;
    flex-shrink:0;
}

.hosting-feature .feature-icon{
    border:2px solid #3b82f6;
    border-radius:3px;
}

.hosting-feature .feature-icon:before{
    content:"";
    position:absolute;
    left:2px;
    right:2px;
    top:4px;
    height:2px;
    background:#3b82f6;
}

.hosting-feature:hover .feature-icon{
    border-color:#fff;
}

.hosting-feature:hover .feature-icon:before{
    background:#fff;
}

.email-feature .feature-icon{
    border:2px solid #8b5cf6;
    border-radius:3px;
}

.email-feature .feature-icon:before{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    left:1px;
    top:1px;
    border-left:2px solid #8b5cf6;
    border-bottom:2px solid #8b5cf6;
    transform:rotate(-45deg);
}

.email-feature:hover .feature-icon{
    border-color:#fff;
}

.email-feature:hover .feature-icon:before{
    border-color:#fff;
}

.coupon-box{
    height:95px;
    border-radius:18px;
    background:linear-gradient(135deg,#4567ff,#8b5cf6);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 30px rgba(91,84,255,.20);
}

.coupon-box span{
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
    opacity:.9;
}

.coupon-box strong{
    margin-top:4px;
    font-size:32px;
    line-height:1;
    font-weight:800;
}

.trial-side{
    display:flex;
    align-items:center;
    justify-content:center;
}

.trial-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:140px;
    height:44px;
    border-radius:12px;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,#4567ff,#8b5cf6);
    box-shadow:0 10px 22px rgba(91,84,255,.16);
    transition:.25s ease;
}

.trial-btn:hover{
    transform:translateY(-1px);
    color:#fff;
}

@media(max-width:992px){
    .trial-offer-box{
        grid-template-columns:1fr 170px;
    }

    .trial-side{
        grid-column:1 / -1;
        justify-content:flex-start;
    }
}

@media(max-width:768px){
    
	
	.trial-offer-section{
		
    padding:55px 0 50px;
    background:#f5f7ff;
}

    .trial-offer-box{
        grid-template-columns:1fr;
        padding:20px 16px;
        border-radius:18px;
        gap:16px;
        text-align:center;
    }

    .trial-badge{
        font-size:11px;
        padding:6px 12px;
        margin-bottom:12px;
    }

    .trial-offer-box h2{
        font-size:28px;
    }

    .trial-content p{
        font-size:14px;
        margin:0 auto;
    }

    .trial-features{
        justify-content:center;
    }

    .trial-feature{
        justify-content:center;
    }

    .coupon-box{
        width:100%;
        max-width:220px;
        height:85px;
        margin:0 auto;
    }

    .coupon-box strong{
        font-size:28px;
    }

    .trial-side{
        justify-content:center;
    }

    .trial-btn{
        width:100%;
        max-width:220px;
        min-width:auto;
        height:48px;
        font-size:14px;
    }
}

.trial-feature{
    position:relative;
}

.feature-icon{
    width:18px;
    height:18px;
    display:inline-block;
    position:relative;
    flex-shrink:0;
}

/* Hosting ikon */

.hosting-feature .feature-icon{
    border:2px solid #3b82f6;
    border-radius:3px;
}

.hosting-feature .feature-icon:before{
    content:"";
    position:absolute;
    left:3px;
    right:3px;
    top:5px;
    height:2px;
    background:#3b82f6;
}

/* Email ikon */

.email-feature .feature-icon{
    border:2px solid #8b5cf6;
    border-radius:3px;
}

.email-feature .feature-icon:before{
    content:"";
    position:absolute;
    left:1px;
    top:1px;
    width:12px;
    height:12px;
    border-left:2px solid #8b5cf6;
    border-bottom:2px solid #8b5cf6;
    transform:rotate(-45deg);
}

/* Hover */

.hosting-feature:hover .feature-icon{
    border-color:#fff;
}

.hosting-feature:hover .feature-icon:before{
    background:#fff;
}

.email-feature:hover .feature-icon{
    border-color:#fff;
}

.email-feature:hover .feature-icon:before{
    border-color:#fff;
}

.free-hosting-info-section {
  padding: 80px 0;
  background: #f6fbff;
}

.free-info-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.free-info-label {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(20, 92, 255, .09);
  color: #145cff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.free-info-head h2 {
  margin: 14px 0 10px;
  font-size: 32px;
  line-height: 1.18;
  color: #101426;
}

.free-info-head p {
  margin: 0;
  color: #52627f;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.free-info-head strong,
.free-info-item strong {
  color: #145cff;
  font-weight: 900;
}

.free-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.free-info-item {
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.free-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #145cff, #8b35ff);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.free-info-item h3 {
  margin: 0 0 8px;
  color: #101426;
  font-size: 18px;
  line-height: 1.25;
}

.free-info-item p {
  margin: 0;
  color: #66758f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

@media (max-width: 991px) {
  .free-hosting-info-section {
    padding: 60px 0;
  }

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

  .free-info-head h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .free-hosting-info-section {
    padding: 50px 0;
  }

  .free-info-grid {
    grid-template-columns: 1fr;
  }

  .free-info-item {
    padding: 22px 20px;
  }

  .free-info-head h2 {
    font-size: 23px;
  }
}


.free-hosting-comparison {
    padding: 72px 0 82px;
    background: #eef6ff;
}

.comparison-header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.comparison-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.comparison-header h2 {
    max-width: 720px;
    margin: 14px auto 14px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    color: #101426;
}

.comparison-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.comparison-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.comparison-card-light {
    margin-top: 36px;
    background: rgba(255, 255, 255, .92);
}

.comparison-card-featured {
    border: 1.5px solid #2563eb;
    box-shadow: 0 18px 50px rgba(37, 99, 235, .14);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 17px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.comparison-card h3 {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 800;
    color: #101426;
}

.card-subtitle {
    display: block;
    margin-bottom: 22px;
    color: #7180a0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.featured-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin: 0 0 22px;
}

.featured-price strong {
    font-size: 38px;
    line-height: 1;
    color: #2563eb;
    font-weight: 800;
}

.featured-price span {
    margin-bottom: 4px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.comparison-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comparison-card li {
    position: relative;
    padding-left: 27px;
    margin-bottom: 12px;
    color: #26375f;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.comparison-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #20c878;
    color: #fff;
    text-align: center;
    line-height: 18px;
    font-size: 11px;
    font-weight: 900;
}

.comparison-card-light:first-child li::before {
    content: "×";
    background: #ff5d6c;
}

.comparison-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-height: 48px;
    border-radius: 11px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.comparison-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .free-hosting-comparison {
        padding: 60px 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .comparison-card-light {
        margin-top: 0;
    }

    .comparison-header h2 {
        font-size: 30px;
    }
}
.domain-price-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 18px;

  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid rgba(11, 92, 255, 0.22);
  box-shadow: 0 14px 36px rgba(11, 92, 255, 0.16);
  backdrop-filter: blur(8px);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11, 92, 255, 0.22);
}

.price-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #0b5cff;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-kicker {
  position: relative;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-kicker::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(37, 99, 235, 0.18);
  transform: translateY(-50%);
}

.price-main {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.price-main strong {
  font-size: 26px;
  font-weight: 900;
  color: #0b5cff;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 14px rgba(11, 92, 255, 0.18);
}

@media (max-width: 575px) {
  .domain-price-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 13px 16px;
    max-width: 320px;
  }

  .price-pill {
    font-size: 10px;
  }

  .price-kicker {
    width: 100%;
    padding-right: 0;
    text-align: center;
    font-size: 11px;
  }

  .price-kicker::after {
    display: none;
  }

  .price-main strong {
    font-size: 23px;
  }
}



/* :: HEADER (inner page hero) :: */
.header {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
  background-color: #050614;
  background-image: linear-gradient(90deg, #0b0d21 0%, #050614 100%), url(../images/pages/index/bg-d.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.dark-theme .header {
  background-color: #050614;
  background-image: linear-gradient(90deg, #0b0d21 0%, #050614 100%), url(../images/pages/index/bg-d.png);
}
.dark-theme .header .title-1,
.dark-theme .header .title-5,
.dark-theme .header .para-1,
.dark-theme .header .navigator .title,
.dark-theme .header .navigator .item {
  color: #ffffff !important;
}
.dark-theme .header .navigator .title::before {
  background: rgba(255,255,255,.2) !important;
}
.dark-theme .header .navigator .item.active {
  border-bottom-color: #0060fe !important;
}
.light-theme .header {
  background-color: #e6f4f8;
  background-image: url(../images/pages/index/bg.png);
}
@media (max-width: 767.98px) {
  .header { padding: 100px 0 60px; }
}

/* navigator */
.header .navigator {
  display: flex;
  align-items: center;
  padding: 10px 0 50px;
  font-family: var(--secondary-font);
}
.header .navigator .title {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  margin-right: 45px;
}
.light-theme .header .navigator .title {
  color: var(--darkBlue);
}
.header .navigator .title::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.2);
  right: -24px;
}
.light-theme .header .navigator .title::before {
  background: var(--darkBlue);
}
.header .navigator .item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid transparent;
}
.light-theme .header .navigator .item {
  color: var(--darkBlue);
}
.header .navigator .item.active {
  font-weight: 600;
  color: #ffffff;
  border-bottom-color: #0060fe;
}
.light-theme .header .navigator .item.active {
  color: var(--darkBlue);
  border-bottom-color: var(--darkBlue);
}
.header .navigator .item:not(:last-child) { margin-right: 25px; }
.header .navigator .item:hover {
  color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.3);
}
.light-theme .header .navigator .item:hover {
  color: var(--darkBlue);
  border-bottom-color: var(--darkBlue);
}

/* eyebrow */
.header .title-5 {
  display: inline-block;
  font-size: 11px;
  font-family: var(--secondary-font);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0060fe;
  background: rgba(0,96,254,.1);
  border: 1px solid rgba(0,96,254,.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.light-theme .header .title-5 {
  color: #0060fe;
  background: rgba(0,96,254,.08);
  border-color: rgba(0,96,254,.22);
}

/* headline */
.header .title-1 {
  font-size: clamp(2.01rem, calc(.5rem + 2.9004vw), 3.247rem);
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.light-theme .header .title-1 {
  color: var(--darkBlue);
}
@media (max-width: 991.98px) {
  .header .title-1 { font-size: clamp(1.8rem, calc(.5rem + 3.5vw), 2.5rem); }
}

/* body copy */
.header .para-1 {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 540px;
}
.light-theme .header .para-1 { color: var(--darkGray); }

/* hero card column responsive */
.header-hero-card { display: flex; align-items: center; justify-content: flex-end; }
@media (max-width: 991.98px) {
  .header-hero-card { justify-content: center; margin-top: 32px; }
  .header-hero-card .testimonial-hero-card { max-width: 100%; }
}
/* ----------------------------------- */

/* :: SECTION I :: */
.se-i {
  padding: 60px 0;
}

/* title-1 */
.se-i .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 1.9004vw),3.247rem);
  color: #fff;
  line-height: 1.1;
}
.light-theme .se-i .title-1 {
  color: var(--darkBlue);
}


/* circle */
.se-i .circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--semi-dark-2);
  border-radius: 50%;
}
.se-i .circle:hover {
  background-color: #aae6d6;
}
.light-theme .se-i .circle {
  background-color: var(--light);
}
.light-theme .se-i .circle:hover {
  background-color: #aae6d6;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle {
    border-radius: 0;
    background-color: transparent;
    aspect-ratio: unset;
  }
  .light-theme .se-i .circle,
  .light-theme .se-i .circle:hover {
    background-color: transparent;
  }
}

/* icon */
.se-i .circle .icon {
  width: 80px;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle .icon {
    width: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-i .circle .icon {
    width: 50px;
  }
}

/* text */
.se-i .circle .text {
  position: absolute;
  left: 4px;
  top: 4px;
  right: 4px;
  bottom: 4px;
  background-color: var(--darkBlue);
  padding: 20px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 16px;
  font-family: var(--third-font);
  font-weight: 700;
  color: #fff;
  opacity: 0;
  z-index: 2;
}
.light-theme .se-i .circle .text {
  background-color: #fff;
  color: var(--darkBlue);
}
.se-i .circle:hover .text {
  opacity: 1;
}
@media only screen and (max-width: 1199.98px) {
  .se-i .circle .text {
    position: unset;
    opacity: unset;
    background-color: unset;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
  }
  .light-theme .se-i .circle .text {
    background-color: transparent;
  }
}
/* ----------------------------------- */

/* :: PLANS SECTION :: */
.plans-sec .plans-toggler .buttons {
  background-color: var(--semi-dark);
  padding: 8px;
  border-radius: 50px;
}
.light-theme .plans-sec .plans-toggler .buttons {
  background-color: #fff;
}
.plans-sec .plans-toggler button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--semi-dark);
  border: 0;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all .15s ease;
}
.light-theme .plans-sec .plans-toggler button {
  background-color: #fff;
  color: var(--darkBlue);
}
.plans-sec .plans-toggler button.active {
  background-color: var(--primary);
  color: #fff;
}

/* plan */
.plans-sec .plans .plan {
  position: relative;
  padding: 36px 40px;
  background: transparent;
  border-radius: 24px;
  height: fit-content;
  z-index: 2;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans-sec .plans .plan .plan-ui-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #1e2140 0%, #111326 55%, #0d0f22 100%);
  border-radius: 24px;
  overflow: hidden;
  z-index: -1;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 32px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,96,254,.08) inset;
}

.plans-sec .plans .plan .plan-ui-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0060fe 0%, #7c3aed 50%, #0060fe 100%);
  border-radius: 24px 24px 0 0;
  z-index: 3;
}

.light-theme .plans-sec .plans .plan .plan-ui-wrap {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow:
    0 0 0 1px rgba(0,96,254,.13),
    0 32px 80px rgba(0,96,254,.14);
}

/* decorative glowing orbs */
.tcard-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.tcard-orb-1 {
  width: 200px; height: 200px;
  top: -60px; right: -40px;
  background: radial-gradient(circle, rgba(0,96,254,.18) 0%, transparent 70%);
}
.tcard-orb-2 {
  width: 160px; height: 160px;
  bottom: 20px; left: -30px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
}
.light-theme .tcard-orb-1 { background: radial-gradient(circle, rgba(0,96,254,.10) 0%, transparent 70%); }
.light-theme .tcard-orb-2 { background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%); }

/* popular-box */
.plans-sec .plans .plan .popular-box {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .plans-sec .plans .plan .popular-box {
  background-color: #fff;
}
.plans-sec .plans .plan .popular-box::before {
  position: absolute;
  content: '';
  left: -4px;
  top: -4px;
  width: 48px;
  height: 48px;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  z-index: -1;
}
.plans-sec .plans .plan .popular-box img {
  width: 17px;
}

/* plan-icon */
.plans-sec .plans .plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left: -4px
}

/* plan-head */
.plans-sec .plans .plan-head {
  margin-bottom: 35px;
  padding-bottom: 0;
  border-bottom: none;
}
.light-theme .plans-sec .plans .plan-head {
  border-color: transparent;
}
.plans-sec .plans .plan-name {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.light-theme .plans-sec .plans .plan-name {
  color: var(--darkBlue);
  margin-bottom: 10px;
}
.plans-sec .plans .plan-para {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  min-height: 45px;
  line-height: 1.6;
}
.light-theme .plans-sec .plans .plan-para {
  color: #6b7a9e;
}

/* plan-price */
.plans-sec .plans .plan-price {
  margin-bottom: 20px
}
.plans-sec .plans .plan-price:not([data-for="monthly"]) {
  display: none;
}
.plans-sec .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--third-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .plans-sec .plans .plan-price .price {
  color: var(--darkBlue);
}
.plans-sec .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}
.light-theme .plans-sec .plans .plan-price .price-comment {
  color: #6b7a9e;
}


/* actions */
.plans-sec .plans .actions {
  padding-bottom: 10px
}

/* group */
.plans-sec .plans .group {
  margin-top: 45px;
}

.plans-sec .plans .group .details {
    margin-top: 5px;
}
.plans-sec .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px
}
.light-theme .plans-sec .plans .group .title-4 {
  color: var(--darkBlue);
}
.plans-sec .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding-right: 26px;
}
.light-theme .plans-sec .plans .group .list li {
  color: #2c3e6b;
}
.plans-sec .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px
}
.plans-sec .plans .group .list li img {
  margin-right: 10px;
  width: 16px
}

/* float-box */
.plans-sec .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.plans-sec .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease-in-out;
}
.light-theme .plans-sec .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, .1);
}
.plans-sec .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, .2);
}
.plans-sec .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--darkGray);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease-in-out;
}
.light-theme .plans-sec .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px #dde5eb;
}
.plans-sec .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.plans-sec .se-footer .line {
  margin: 6px 12px;
}
.plans-sec .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.plans-sec .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1;
}
/* ----------------------------------- */

/* :: SECTION II :: */

/* text-area */
.se-ii .text-area .title-1 {
  font-size: 42px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.light-theme .se-ii .text-area .title-1 {
  color: var(--darkBlue);
}
.se-ii .text-area .para-1 {
  color: var(--darkGray);
}
@media only screen and (max-width: 767.98px) {
  .se-ii .text-area .title-1 {
    font-size: 26px;
  }
}

/* box */
.se-ii .box {
  background-color: var(--semi-dark-2);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: all .20s ease;
}
.light-theme .se-ii .box {
  background-color: var(--light);
}
.se-ii .box .box-title {
  font-family: var(--secondary-font);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.light-theme .se-ii .box .box-title {
  color: var(--darkBlue);
}
.se-ii .box .box-para {
  color: var(--darkGray);
}
/* ----------------------------------- */

/* :: COMPARISON SECTION :: */

/* tables-toggler */
.comp-sec .tables-toggler .buttons {
  background-color: var(--semi-dark);
  padding: 8px;
  border-radius: 50px;
}
.light-theme .comp-sec .tables-toggler .buttons {
  background-color: #fff;
}
.comp-sec .tables-toggler button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--semi-dark);
  border: 0;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all .15s ease;
}
.light-theme .comp-sec .tables-toggler button {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .tables-toggler button.active {
  background-color: var(--primary);
  color: #fff;
}

/* t-container */
@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-container {
    overflow-x: auto;
  }
}

/* t-head */
.comp-sec .t-head {
  display: flex;
  align-items: center;
  top: 0;
}

/* t-head > t-col */
.comp-sec .t-head .t-col {
  background-color: var(--semi-dark);
  padding: 18px 30px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.light-theme .comp-sec .t-head .t-col {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .t-head .t-col.t-col-1 {
  width: 25%;
  justify-content: flex-start;
  text-align: left;
}
.comp-sec .t-head .t-col.t-col-2 {
  width: 10%;
}
.comp-sec .t-head .t-col.t-col-3 {
  width: 15%;
}
.comp-sec .t-head .t-col.t-col-4 {
  width: 15%;
}
.comp-sec .t-head .t-col.t-col-5 {
  width: 15%;
}
.comp-sec .t-head .t-col.t-col-6 {
  width: 20%;
}

.comp-sec .t-head .t-col:nth-child(1) {
  border-radius: 8px 0 0 0;
}
.comp-sec .t-head .t-col:last-child {
  border-radius: 0 8px 0 0;
}
.comp-sec .t-head .t-col:not(:nth-child(1)) {
  border-left: 0;
}
.comp-sec .t-head .t-col img {
  width: 20px;
  margin-right: 15px;
}
.light-theme .comp-sec .t-head .t-col img {
  filter: invert(1);
}
@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-head .t-col.t-col-1 {
    width: 20%;
    justify-content: center;
  }
  .comp-sec .t-head .t-col.t-col-5 {
    width: 20%;
  }
}

/* t-body */
.comp-sec .t-body:not([data-for="1"]) {
  display: none;
}

/* t-row */
.comp-sec .t-body .t-row {
  display: flex;
  align-items: center;
}

/* t-body > t-col */
.comp-sec .t-body .t-col {
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid var(--border);
  border-top: 0;
  height: 75px;
  text-align: center;
}
.light-theme .comp-sec .t-body .t-col {
  background-color: #fff;
  color: var(--darkBlue);
}
.comp-sec .t-body .t-row:last-child .t-col:first-child {
  border-bottom-left-radius: 8px;
}
.comp-sec .t-body .t-row:last-child .t-col:last-child {
  border-bottom-right-radius: 8px;
}
.comp-sec .t-body .t-col.t-col-1 {
  width: 25%;
  display: flex;
  align-items: center;
  text-align: left;
}
.comp-sec .t-body .t-col.t-col-1 img {
  max-height: 24px;
  margin-right: 15px;
}
.comp-sec .t-body .t-col:not(.t-col-1) {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.comp-sec .t-body .t-col.t-col-2 {
  width: 10%;
}
.comp-sec .t-body .t-col.t-col-3 {
  width: 15%;
}
.comp-sec .t-body .t-col.t-col-4 {
  width: 15%;
}
.comp-sec .t-body .t-col.t-col-5 {
  width: 15%;
  text-align: center;
}
.comp-sec .t-body .t-col.t-col-6 {
  width: 20%;
  text-align: center;
  color: var(--gold);
  font-size: 20px;
  font-family: var(--secondary-font);
}
.comp-sec .t-body .t-col.t-col-6 > div {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
}
.comp-sec .t-body .t-col:not(:first-child) {
  border-left: 0;
}
@media only screen and (max-width: 1599.98px) {
  .comp-sec .t-body .t-row {
    align-items: inherit;
  }
  .comp-sec .t-body .t-col {
    padding: 10px 20px;
    height: auto;
    font-size: 14px;
  }
  .comp-sec .t-body .t-col.t-col-1 {
    width: 20%;
    flex-direction: column;
    text-align: center;
  }
  .comp-sec .t-body .t-col.t-col-1 img {
    max-height: 24px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .comp-sec .t-body .t-col.t-col-5 {
    width: 20%;
  }
}
@media only screen and (max-width: 1199.98px) {
  .comp-sec .t-head,
  .comp-sec .t-body {
    min-width: 1000px;
  }
}
/* ----------------------------------- */

/* :: SECTION IV :: */

/* box */
.se-iv .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  border: 1px solid var(--border);
  transition: all .20s ease;
}
.light-theme .se-iv .box {
  background-color: #fff;
}
.se-iv .box:hover {
  background-color: var(--semi-dark-2);
}
.light-theme .se-iv .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-iv .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iv .box .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.se-iv .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iv .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iv .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iv .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iv .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iv .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iv .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iv .box .icon img {
  width: 34px;
}

/* box-title */
.se-iv .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.light-theme .se-iv .box-title {
  color: var(--darkBlue);
}

/* box-para */
.se-iv .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.7;
  max-height: 70px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}

/* arrow */
.se-iv .arrow {
  margin-top: 20px;
}
.se-iv .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-iv .box:hover .arrow img {
  filter: contrast(100%);
}


/* ====================================================
   SHARED FEATURE STRIP  (.sh-fstrip)
   ==================================================== */
.sh-fstrip {
  padding: 52px 0;
  background-color: var(--semi-dark-3);
  position: relative;
  overflow: hidden;
}
.sh-fstrip::before,
.sh-fstrip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.07) 30%, rgba(255,255,255,.07) 70%, transparent 100%);
}
.sh-fstrip::before { top: 0; }
.sh-fstrip::after  { bottom: 0; }

.light-theme .sh-fstrip {
  background-color: #fff;
  box-shadow: 0 1px 0 #dce8f3 inset, 0 -1px 0 #dce8f3 inset;
}
.light-theme .sh-fstrip::before,
.light-theme .sh-fstrip::after { display: none; }

.sh-fstrip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sh-fstrip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 36px 0 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.sh-fstrip-item:not(:first-child) { padding-left: 36px; }
.sh-fstrip-item:last-child { border-right: none; }

.light-theme .sh-fstrip-item { border-color: #dce8f3; }

.sh-fstrip-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-fi-blue   { background: rgba(0,96,254,.15); }
.sh-fi-purple { background: rgba(124,58,237,.15); }
.sh-fi-green  { background: rgba(34,197,94,.15); }
.sh-fi-amber  { background: rgba(245,158,11,.15); }

.light-theme .sh-fi-blue   { background: rgba(0,96,254,.1);   border: 1.5px solid rgba(0,96,254,.3); }
.light-theme .sh-fi-purple { background: rgba(124,58,237,.1); border: 1.5px solid rgba(124,58,237,.3); }
.light-theme .sh-fi-green  { background: rgba(34,197,94,.1);  border: 1.5px solid rgba(34,197,94,.3); }
.light-theme .sh-fi-amber  { background: rgba(245,158,11,.1); border: 1.5px solid rgba(245,158,11,.3); }

.sh-fstrip-icon { width: 24px; }
.light-theme .sh-fstrip-icon { filter: brightness(0.1); }

.sh-fstrip-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--third-font);
  color: #fff;
  line-height: 1.3;
}
.light-theme .sh-fstrip-label { color: var(--darkBlue); }

.sh-fstrip-sub {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  line-height: 1.3;
}
.light-theme .sh-fstrip-sub { color: #6b7a9d; }

@media only screen and (max-width: 991.98px) {
  .sh-fstrip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .sh-fstrip-item { padding: 0 28px 0 0; }
  .sh-fstrip-item:not(:first-child) { padding-left: 28px; }
  .sh-fstrip-item:nth-child(2) { border-right: none; }
  .sh-fstrip-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); }
  .light-theme .sh-fstrip-item:nth-child(3) { border-color: #dce8f3; }
  .sh-fstrip-item:nth-child(4) { border-right: none; }
}
@media only screen and (max-width: 575.98px) {
  .sh-fstrip { padding: 40px 0; }
  .sh-fstrip-grid { grid-template-columns: 1fr; gap: 24px; }
  .sh-fstrip-item,
  .sh-fstrip-item:not(:first-child) { padding: 0; border-right: none !important; }
}
/* ---------------------------------------------------- */


/* ====================================================
   SHARED KOCKÁZATMENTES  (.sh-ktrust)
   ==================================================== */
.sh-ktrust {
  padding: 80px 0;
  background-color: var(--semi-dark);
  position: relative;
  overflow: hidden;
}
.sh-ktrust-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sh-ktrust-orb-1 {
  width: 500px; height: 500px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(0,96,254,.09) 0%, transparent 70%);
}
.sh-ktrust-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
}

.light-theme .sh-ktrust { background-color: #f0f6ff; }
.light-theme .sh-ktrust-orb-1 { background: radial-gradient(circle, rgba(0,96,254,.06) 0%, transparent 70%); }
.light-theme .sh-ktrust-orb-2 { background: radial-gradient(circle, rgba(124,58,237,.05) 0%, transparent 70%); }

.sh-ktrust-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.sh-ktrust-title {
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  font-family: var(--third-font);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.light-theme .sh-ktrust-title { color: var(--darkBlue); }

.sh-ktrust-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.light-theme .sh-ktrust-sub { color: #6b7a9d; }

.sh-ktrust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sh-ktrust-card {
  background: var(--semi-dark-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sh-ktrust-card:hover {
  border-color: rgba(0,96,254,.3);
  box-shadow: 0 16px 48px rgba(0,96,254,.12);
}
.light-theme .sh-ktrust-card {
  background: #fff;
  border-color: #dce8f3;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.light-theme .sh-ktrust-card:hover {
  border-color: rgba(0,96,254,.4);
  box-shadow: 0 16px 48px rgba(0,96,254,.1);
}

.sh-ktrust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sh-ki-blue   { background: rgba(0,96,254,.15); }
.sh-ki-purple { background: rgba(124,58,237,.15); }
.sh-ki-green  { background: rgba(34,197,94,.15); }
.sh-ki-amber  { background: rgba(245,158,11,.15); }

.light-theme .sh-ki-blue   { background: rgba(0,96,254,.1);   border: 1.5px solid rgba(0,96,254,.3); }
.light-theme .sh-ki-purple { background: rgba(124,58,237,.1); border: 1.5px solid rgba(124,58,237,.3); }
.light-theme .sh-ki-green  { background: rgba(34,197,94,.1);  border: 1.5px solid rgba(34,197,94,.3); }
.light-theme .sh-ki-amber  { background: rgba(245,158,11,.1); border: 1.5px solid rgba(245,158,11,.3); }

.sh-ktrust-icon { width: 26px; }
.light-theme .sh-ktrust-icon { filter: brightness(0.1); }

.sh-ktrust-label {
  font-size: 16px;
  font-family: var(--third-font);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.light-theme .sh-ktrust-label { color: var(--darkBlue); }

.sh-ktrust-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}
.light-theme .sh-ktrust-desc { color: #6b7a9d; }

@media only screen and (max-width: 991.98px) {
  .sh-ktrust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media only screen and (max-width: 575.98px) {
  .sh-ktrust { padding: 56px 0; }
  .sh-ktrust-head { margin-bottom: 36px; }
  .sh-ktrust-grid { grid-template-columns: 1fr; gap: 16px; }
}
/* ---------------------------------------------------- */
/* ----------------------------------- */