*,::after,::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

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

body {
    font-family: "Inter",sans-serif;
    line-height: 1.65;
    font-size: clamp(14px,3.1vw,15.5px);
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 16px
}

.section {
    padding: 50px 0
}

.section-sm {
    padding: 40px 0
}

h1,h2,h3 {
    font-size: clamp(26px,7vw,46px);
    font-weight: 800;
    margin-bottom: 20px
}

h2,h3 {
    font-size: clamp(22px,5.8vw,36px);
    font-weight: 700
}

h3 {
    font-size: clamp(18px,4.8vw,24px);
    margin-bottom: 12px
}

ol,p,ul {
    margin-bottom: 16px
}

p {
    color: #6b7280;
    font-size: clamp(14px,3.3vw,16px)
}

body,strong {
    color: #1f2933
}

.btn,footer a {
    display: inline-block
}

.badge,.btn {
    font-weight: 700
}

.btn {
    text-align: center;
    background: linear-gradient(135deg,#ff2a2a,red);
    color: #fff;
    padding: clamp(14px,4vw,18px) clamp(24px,6vw,34px);
    border-radius: 12px;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 0 12px rgba(255,0,0,.55),0 0 22px rgba(255,0,0,.35)
}

.btn:hover {
    box-shadow: 0 0 18px rgba(255,0,0,.75),0 0 36px rgba(255,0,0,.55),0 10px 22px rgba(0,0,0,.18)
}

.badge {
    color: #ff3d00;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    letter-spacing: .05em
}

.hero {
    background: linear-gradient(135deg,#fff5f0,#fff)
}

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

.hero img,.hero-right-img {
    max-width: 290px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1)
}

.features {
    background: #f9fafb
}

.feature-grid {
    display: grid;
    gap: 24px
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.05)
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.about-text {
  flex: 1;
}

/* MOBIL */

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 260px;
  }
}


.services-grid {
    display: grid;
    gap: 30px;
    text-align: center
}

.service img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px
}

.testimonials {
    color: #fff;
    background: url(images/testimonials-bg.jpg)center/cover no-repeat
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7)
}

.hack-list li,.test-inner,.testimonials {
    position: relative
}

.test-grid {
    display: grid;
    gap: 24px
}

.testimonial {
    background: rgba(255,255,255,.06);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(6px)
}

.testimonial-video-container {
    max-width: 800px;
    margin: 0 auto
}

.cta,footer {
    text-align: center
}

.price {
    font-size: clamp(36px,8vw,48px);
    font-weight: 800;
    color: #ff3d00
}

.faq {
    background: #f9fafb
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden
}

.faq-q {
    background: #1e3a8a;
    color: #fff;
    padding: 18px;
    cursor: pointer;
    font-weight: 600
}

footer {
    background: #111827;
    color: #9ca3af;
    padding: 40px 20px;
    font-size: 14px
}

ol,ul {
    padding-left: 24px
}

@media (min-width:640px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr
    }

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

    img[src*="pic.jpg"] {
        width: 55%!important;
        height: 55%!important;
        max-width: 420px;
        margin: 0 auto;
        display: block
    }
}

@media (min-width:768px) {

    .feature-grid,.services-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .test-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 20px auto 0
}

.video-thumb {
    cursor: pointer;
    max-width: 800px;
    margin: auto
}

.video-thumb img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15)
}

.play-btn {
    background: rgba(0,0,0,.6)
}

.play-btn svg {
    width: 48px;
    height: 48px;
    width: clamp(40px,8vw,60px);
    height: clamp(40px,8vw,60px);
    margin-left: 6px;
}

.video-thumb:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.08);
    background: rgba(0,0,0,.75)
}

.img-center {
    display: block;
    margin: 0 auto
}

.faq-a {
    display: none;
    background: #fff;
    padding: 18px
}

.faq-a.open {
    display: block
}

footer a {
    color: #9ca3af;
    text-decoration: underline;
    margin: 6px 0;
    font-weight: 500
}

footer a:hover {
    color: #fff
}

.hack-list-box {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    max-width: 900px;
    margin: 30px auto
}

.hack-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px
}

@media (min-width:640px) {
    .hack-list {
        grid-template-columns: 1fr 1fr
    }
}

.hack-list li {
    padding-left: 42px;
    font-weight: 500;
    line-height: 1.5
}

.hack-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(34,197,94,.35)
}

section.features.section:nth-of-type(2) {
    text-align: center
}

section.features.section:nth-of-type(2) .hack-list-box {
    margin-left: auto;
    margin-right: auto
}

section.features.section:nth-of-type(2) .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content
}

.features.section+.features.section {
    padding-top: 0
}

.img-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    line-height: 0
}

.center-img,.center-img2 {
    display: block;
    margin: 0
}

.center-img {
    width: 75%;
    max-width: 400px;
    height: 300px;
    object-fit: cover
}

.center-img2 {
    width: 95%;
    max-width: 800px;
    height: 420px;
    object-fit: contain
}

@media (max-width:768px) {
    .center-img {
        width: 78%;
        height: auto
    }

    .center-img2 {
        width: 98%;
        max-width: 400px;
        height: auto
    }
}

.testimonials.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%,rgba(96,165,250,.08)0,transparent 50%);
}

.mit{
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    font-size: clamp(2.25rem,5vw,3.5rem);
    letter-spacing: -.5px;
    color: #1f2933;
    font-weight: 800;
    text-align: center;
    margin: 0 0 48px;
    font-size: 32px;
}

@media (min-width:1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3,minmax(360px,1fr));
        gap: 40px
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .testimonials-grid {
        grid-template-columns: repeat(2,minmax(320px,1fr))
    }
}

@media (max-width:767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width:767px) {
    .video-container {
        max-width: 100%
    }
    .mit {
        font-size: 20px;
    }
}

.play-btn {
    width: 90px;
    height: 90px
}

.testimonial-author {
    background: linear-gradient(to top,rgba(15,23,42,.9),transparent)
}

.testimonial-author p {
    font-size: clamp(1rem,3.2vw,1.1rem);
    color: #1f2933;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400
}

.testimonial-author h4 {
    font-size: clamp(1.2rem,3.8vw,1.35rem);
    letter-spacing: .6px;
    color: #1f2933;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0
}

.testimonial-item {
    background: rgba(30,41,59,.6)
}

.testimonials.section {
    background: linear-gradient(135deg,#0f172a 0,#020617 100%);
    overflow: hidden
}

.testimonials-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit,minmax(360px,1fr));
    justify-content: center;
    justify-items: center;
    padding: 0 16px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

@media (min-width:1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 40px
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .testimonials-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

@media (max-width:767px) {
    .video-container {
        max-width: 100%
    }
}

.video-thumb,.video-wrapper {
    background: #0f172a
}

.video-thumbnail {
    display: block
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: clamp(80px,14vw,110px);
    height: clamp(80px,14vw,110px);
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    backdrop-filter: blur(6px);
    z-index: 2
}

.play-btn:hover {
    transform: translate(-50%,-50%) scale(1.15);
    background: linear-gradient(135deg,#60a5fa,#a78bfa)
}

.testimonial-author {
    background: linear-gradient(to top,rgba(15,23,42,.92),transparent);
    position: relative;
    z-index: 2
}

.testimonial-item {
    background: rgba(30,41,59,.65);
    transition: all .4s cubic-bezier(.16,1,.3,1);
    z-index: 1
}

.testimonial-item:hover {
    transform: translateY(-4px) scale(1.015)
}

.video-container {
    background: #0f172a
}

@media (max-width:767px) {
    .video-container {
        max-width: 100%;
        min-height: 240px
    }
}

.video-wrapper iframe {
    min-height: 100%;
    min-width: 100%
}

.testimonials.section {
    position: relative
}

.video-container {
    min-height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
    background: #f1f5f9
}

@media (max-width:767px) {
    .video-container {
        max-width: 100%;
        min-height: 240px
    }
}

.video-thumb,.video-wrapper,.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%!important;
    height: 100%!important;
    border: 0
}

.testimonial-item {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(229,231,235,.6);
    backdrop-filter: blur(12px);
    position: relative
}

.testimonial-item:hover {
    border-color: rgba(229,231,235,.9)
}

.testimonials.section {
    background: linear-gradient(135deg,#fff5f0,#fff);
    padding-top: 60px!important;
    padding-bottom: 80px
}

.testimonial-item,.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto
}

.testimonial-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease
}

.testimonial-item:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    transform: translateY(-2px)
}

.video-container {
    aspect-ratio: 16/9;
    position: relative;
    background: #f3f4f6
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.video-thumb:hover .video-thumbnail {
    transform: scale(1.08)
}

.testimonial-author {
    padding: 32px 36px;
    background: #fff;
    text-align: center
}

.play-btn {
    background: linear-gradient(135deg,#ef4444,#dc2626);
    border: 4px solid rgba(255,255,255,.8);
    box-shadow: 0 0 30px rgba(239,68,68,.5)
}

.play-btn:hover {
    background: linear-gradient(135deg,#f87171,#f87171);
    box-shadow: 0 0 50px rgba(239,68,68,.8)
}
