@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');
:root {
    --primary: #6166F8;
    --primary-orange: #6166F8;
    --primary-soft: rgba(255, 107, 0, 0.08);
    --text-dark: #121212;
    --text-light: #555555;
    --white: #FFFFFF;
    --primary-soft: rgba(255, 107, 0, 0.08);
    --text-dark: #121212;
    --text-light: #555555;
    --deep-navy: #0f172a; 
    --light-bg: #fafafa;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --soft-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--deep-navy);
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            background-color: var(--bg-white);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 40%);
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
}
.header {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px; 
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px var(--shadow);
}

/* .logo {
    display: flex;
    align-items: center;
} */
.logo {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 12px);
    cursor: pointer;
    max-width: 100%;
}

.logo img {
    width: clamp(28px, 3.5vw, 52px); 
    height: clamp(28px, 3.5vw, 52px);
    object-fit: cover;
    border-radius: clamp(6px, 0.8vw, 12px);
    flex-shrink: 0; 
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.logo:hover img {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.5);
}

.logo-text {
    font-size: clamp(1rem, 1.8vw, 1.6rem); 
    font-weight: 800;
    white-space: nowrap; 
    line-height: 1;
    display: flex;
    align-items: center;
}

.theme-text {
    color: var(--primary-orange);
    margin-left: 4px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
}
@media (max-width: 600px) {
    .logo {
        gap: 8px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 0.95rem;
    }
}
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--deep-navy);
    text-transform: capitalize;
}

.theme-text {
    color: var(--primary-orange);
    text-shadow: 0px 0px 20px rgba(255, 138, 0, 0.15);
}

.download-btn {
    display: flex;
    align-items: center;
}

.download-btn a img {
    height: 46px; 
    width: auto;
    border-radius: 7px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-btn a img:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}


@media (max-width: 992px) {
    .header {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .download-btn a img {
        height: 38px;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.1rem;
    }
    
    .download-btn a img {
        height: 34px;
    }
}



@media (max-width: 320px) {
    .header {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .logo-text {
        font-size: 0.9rem;
        white-space: normal;
    }

    .download-btn a img {
        height: 30px;
    }
}
/* hero section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0b0f, #111);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 10s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}


.hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
}
.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.brand-highlight {
    color: #6166F8;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}
.play-store img {
    width: 200px;
    transition: 0.3s ease;
}

.play-store img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 25px rgba(255, 107, 0, 0.5));
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #6166F8, transparent 70%);
    filter: blur(80px);
    animation: blobMove 8s ease-in-out infinite;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); 
    }
    50% { transform: translate(40px, -30px) scale(1.1);
     }
}
.phone-img {
    width: 550px;
    max-width: 100%;
    z-index: 2;
    animation: floatPhone 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, 0.4));
}
@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 900px) {
    .hero-container {
        display: flex;             
        flex-direction: column;     
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 500px) {
    .phone-img {
        max-width: 220px;
    }
}

/* section */

.bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-soft);
    top: -10%;
    left: -10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #d69c73;
    bottom: 10%;
    right: -5%;
}

.about-container-modern {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.about-header {
    margin-bottom: 70px;
}

.badge {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.about-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
}

.description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.accent-text {
    color: var(--primary);
    font-weight: 700;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
.card:hover {
    transform: translateY(-15px);
    border-color: #6166f887;
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.1);
}
.icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--primary-soft); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle svg {
    width: 40px;
    height: 40px;
    color: var(--primary); 
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card:hover .icon-circle {
    background: var(--primary);
    transform: rotateY(360deg);
}

.card:hover .icon-circle svg {
    color: var(--white);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}
.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at center, rgba(255,107,0,0.1), transparent 70%); */
    top: 100%;
    left: 0;
    transition: top 0.5s ease;
    z-index: -1;
}

/* .card:hover .card-glow {
    top: 0;
} */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    .about-container-modern {
        margin: 60px auto;
    }
    .about-header h1 {
        font-size: 2.2rem;
    }
}
/* 

footer */
.black-footer {
  background: #000;
  color: #cfcfcf;
  font-family: 'Poppins', sans-serif;
  padding: 90px 8% 30px;
}

.bf-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bf-brand h2 {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
}

.bf-brand span {
  color: #6166F8;
}

.bf-brand p {
  margin: 20px 0 28px;
  line-height: 1.8;
  max-width: 420px;
  font-size: 15.5px;
  color: #b3b3b3;
}

.bf-social {
  display: flex;
  gap: 16px;
}

.bf-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  transition: 0.35s;
}

.bf-social a:hover {
  background: #6166F8;
  border-color: #6166F8;
  transform: translateY(-5px);
}

.bf-links h4,
.bf-newsletter h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}

.bf-links a {
  display: block;
  color: #bdbdbd;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 15.5px;
  transition: 0.3s;
}

.bf-links a:hover {
  color: #6166F8;
  padding-left: 6px;
}

.bf-newsletter p {
  font-size: 14.5px;
  margin-bottom: 14px;
  color: #b0b0b0;
}

.bf-newsletter form {
  display: flex;
  gap: 10px;
}

.bf-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

.bf-newsletter button {
  background: #6166F8;
  border: none;
  padding: 12px 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.bf-newsletter button:hover {
  opacity: 0.85;
}

.bf-bottom {
  text-align: center;
  margin-top: 26px;
  font-size: 14.5px;
  color: #8f8f8f;
}

.bf-bottom span {
  color: #6166F8;
  font-weight: 600;
}

@media (max-width: 950px) {
  .bf-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .bf-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .bf-social {
    justify-content: center;
  }

  .bf-newsletter form {
    flex-direction: column;
  }
}  

/* footer */
/* 
last cards */
        .section-wrapper {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
            text-align: center;
        }
        .top-badge {
            display: inline-block;
            background: #FFF5EE; 
            color: var(--brand-orange);
            padding: 8px 24px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 span {
            color: var(--brand-orange);
        }

        .main-desc {
            max-width: 750px;
            margin: 0 auto 80px;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.6;
        }
        .feature-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .reward-card {
            background: #FFFFFF;
            padding: 50px 35px;
            border-radius: 40px; 
            width: 320px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.01);
        }

        .reward-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(255, 107, 0, 0.1);
        }
        .icon-wrap {
            width: 80px;
            height: 80px;
            background: #FFF5EE;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .icon-wrap svg {
            width: 32px;
            height: 32px;
            stroke: var(--brand-orange);
            stroke-width: 2;
            fill: none;
        }

        .reward-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 15px;
        }

        .reward-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            h1 { font-size: 32px; }
            .reward-card { width: 100%; }
        }

/* 
loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.orbit-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #6166F8;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: rotate 1.5s linear infinite;
    opacity: 1;
    box-shadow: 0 0 15px #6166f887;
}

.ring-2 {
    width: 70px;
    height: 70px;
    animation: rotate 1s linear infinite reverse;
    border-top-color: #ff8c3a;
    opacity: 0.7;
}

.ring-3 {
    width: 40px;
    height: 40px;
    animation: rotate 2s linear infinite;
    border-top-color: #6166F8;
    opacity: 0.4;
}
.coin-icon {
    font-size: 24px;
    font-weight: bold;
    color: #6166F8;
    animation: pulse 1.5s ease-in-out infinite;
}
.loader-brand {
    font-family: sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #333;
    letter-spacing: 1px;
    margin: 10px 0;
}

.loader-brand span {
    color: #6166F8;
}
.loading-bar {
    width: 120px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    width: 0%;
    height: 100%;
    background: #6166F8;
    animation: fillProgress 1.3s ease-in-out forwards;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.hero-section {
  overflow: hidden;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(50px);
  animation: heroTextIn 1s ease forwards;
}

.hero-title { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.3s; }
.play-store { animation-delay: 0.5s; }

.hero-visual {
  opacity: 0;
  transform: translateX(80px);
  animation: heroImageIn 1.2s ease forwards;
  animation-delay: 0.6s;
}

@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageIn {
  to { opacity: 1; transform: translateX(0); }
}
.phone-img {
  animation: phoneFloat 6s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes phoneFloat {
  0%,100% { 
    transform: translateY(0);
 }
  50% {
     transform: translateY(-15px); 
    }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { 
    transform: translateX(-70px)
 }
.reveal-right {
     transform: translateX(70px);
 }
.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}
.delay-1 { 
    transition-delay: .1s
 }
.delay-2 { 
    transition-delay: .2s;
 }
.delay-3 { 
    transition-delay: .3s;
 }
.delay-4 { 
    transition-delay: .4s;
 }
.card,
.srv-card {
  transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover,
.srv-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.footer {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
}

.footer.active {
  opacity: 1;
  transform: translateY(0);
}
.footer {
  opacity: 1;
  transform: translateY(0);
}

.footer.animate-footer {
  animation: footerReveal 1s ease forwards;
}

@keyframes footerReveal {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.srv-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.srv-title.active {
  opacity: 1;
  transform: translateY(0);
}

.srv-box {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.srv-box.active {
  opacity: 1;
  transform: scale(1);
}

/* 
slider */
.premium-game-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.game-card {
    width: 90px;  
    height: 90px;
    background: #ffffff; 
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #6166F8; 
    /* box-shadow: 0 10px 20px #6166f887;  */
}
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    width: auto !important; 
}

.social-app-slider {
    padding: 15px 0;
    width: 100%;
} 
.section-heading {
    margin-bottom: 50px;
}

.mini-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6166F8;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    margin: 10px 0;
}


.gradient-text {
    background: linear-gradient(90deg, #6166F8, #FF9A3D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.highlight-box {
    color: #6166F8;
    position: relative;
}

.highlight-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background: #6166f887;
    border-radius: 4px;
    z-index: -1;
}
.heading-subtext {
    font-size: 16px;
    color: #555;
    max-width: 620px;
    margin: 14px auto 0;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 30px;
    }
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}




.swiper-wrapper {
    transition-timing-function: linear; 
}

.swiper-slide {
    width: 120px !important; 
    display: flex;
    justify-content: center;
}

.game-card {
    width: 90px;
    height: 90px;
    
}

.features-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    justify-content: center;
}

.features-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; 
    align-items: center;
    gap: 60px;
}

.features-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 40px #6166f887);
    transition: transform 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

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

.feature-node {
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.icon-blob {
    width: 75px;
    height: 75px;
    /* background: #fff8f3;  */
    border-radius: 22px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid #6166F8;
}

.icon-blob svg {
    width: 32px;
    height: 32px;
    transition: all 0.6s ease;
}

.feature-node:hover .icon-blob {
    transform: rotate(360deg); 
    background: #6166F8;
    border-radius: 50%; 
    box-shadow: 0 15px 30px #6166f887;
}

.feature-node:hover .icon-blob svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

.node-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1b;
    margin-bottom: 12px;
}

.node-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}


@media (max-width: 1100px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-image {
        order: -1; 
    }

    .hero-img {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-node {
        align-items: center;
    }
    
    .node-content p {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 15px;
    }
    
    .node-content h3 {
        font-size: 1.25rem;
    }

    .icon-blob {
        width: 65px;
        height: 65px;
    }
}
.features-heading {
    margin-bottom: 40px;
    max-width: 520px;
}

.features-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1b;
    margin-bottom: 14px;
}

.features-heading .highlight {
    color: #6166F8;
}

.features-heading p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-heading {
        max-width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }
}
@media (max-width: 480px) {
    .features-heading {
        margin-bottom: 30px;
    }

    .features-heading h2 {
        line-height: 1.25;
    }
}
:root {
    --text-muted: #6b7280;
    --soft-shadow: 0 10px 25px -5px #6166f887, 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.simple-steps {
    padding: 100px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.orange {
    color: var(--primary-orange);
}

.section-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.minimal-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px #6166f887;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff5ed; 
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 14px;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.minimal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.minimal-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .simple-steps {
        padding: 60px 15px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .steps-wrapper {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .minimal-card {
        padding: 30px 20px;
    }
}




































































































