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

html, body {
    overflow-x: hidden; 

}

:root {
    --font-main : 'Poppins', sans-serif;
    --font-secondary: 'Integral CF Regular', sans-serif;
    --font-third: "Helvetica Neue Medium Extended";
}

/* Start Components */

.main-button {
    background-color: #00B512;
    color: white;
    text-align: center;
    border: none;
    border-radius: 9999px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    width: 179px;
    height: 52px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease-in-out;
}

.main-button:after {
    position: absolute;
    content: "\f061";
    background-color: #FBF9F1;
    font-family: "Font Awesome 6 Free";
    color: black;
    border-radius: 9999px;
    width: 52px;
    height: 52px;
    top: 0;
    right: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px; 
    transition: right 0.3s ease-in-out; 

}

.main-button:hover {
    background-color: #008f0b; 
    transform: scale(1.05); 
}

.main-button:hover:after {
    right: -35px; 
}

.secondary-button {
    background-color: #FFF;
    color: #000;
    border: 0.8px solid #40AF3E;
    margin-top: 30px;
    text-align: center;
    border-radius: 9999px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    width: 179px;
    height: 52px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease-in-out;
}

.secondary-button::after {
    background-color: #00B512;
    color: #FFF;
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    border-radius: 50px;
    width: 52px;
    height: 52px;
    top: 0;
    right: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px; 
    transition: right 0.3s ease-in-out; 

}

.secondary-button:hover {
    background-color: #40AF3E; 
    color: white;
    transform: scale(1.05); 
}

.secondary-button:hover::after {
    right: -35px; 
    background-color: white;
    border: 1px solid #00B512;
    color: #000;
}

h2 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0.04em;
    text-align: left;
    margin-top: 10px;
}

.main-section-title {
    background-color: #F9FAFB;
    border: 1px solid #EAECF0;
    margin-bottom: 5px;
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #031B1D;
}

.main-section-title:hover {
    background-color: #40AF3E;
    color: white; 
    transform: scale(1.05); 
    box-shadow: 0 0 15px rgba(13, 210, 40, 0.5);
}

.secondary-section-title {
    color: white;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 6px 16px 6px 12px;
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 100px;
}

.secondary-section-title:hover {
    background-color: #40AF3E;
    color: white; 
    transform: scale(1.05); 
    box-shadow: 0 0 15px rgba(13, 210, 40, 0.5);
}

.icon-svg {
    width: 9px;
    height: 13px;
}

/* Start Hero */
.landing {
    background: url("https://l.top4top.io/p_3235cr8e41.png") no-repeat top center;
    background-size: cover;
    min-height: 650px;
    max-height: 1250px;
    position: relative;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

header img {
    width: 122px;
    height: 33px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

header nav ul li a {
    text-decoration: none;
    color: #DCDCDC;
    font-family: var(--font-main);
    font-size: 16px;
    position: relative; 
    transition: color 0.3s, transform 0.3s ease; 
}


header nav ul li a:hover {
    color: #898888; 
    transform: scale(1.1); 
}

header nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #40AF3E; 
    transform: scaleX(0); 
    transform-origin: bottom right; 
    transition: transform 0.3s ease;
}

header nav ul li a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left;
}


header button {
    border: none;
    outline: none;
    padding: 10px;
    width: 130px;
    height: 48px;
    background-color: transparent;
    border: 1px solid #DCDCDC;
    color: #DCDCDC;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

header button:hover {
    background-color: white;
    color: #1f2952;
    border: 1px solid white;
    font-weight: regular;
}

.landing .container .pattern {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    pointer-events: none;
    
}


/* Start Hero */
section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}


section .text {
    max-width: 50%; 
    align-self: flex-start;
    margin-top: 40px;
}
section .landing-image {
    max-width: 40%;
}
section .landing-image img {
    width: 90%;
    height: auto;
    object-fit: contain; /* or object-fit: cover for full coverage */
}

section .text h2 {
    color: white;
}

section .text h2 span {
    color: #E2FF54;
}

section .text p {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: #DCDCDC;
    text-transform: capitalize;
    margin-top: 15px;
}


.text .main-button {
    margin-top: 45px;
    margin-bottom: 25px;
}

.images {
    display: flex;
    flex-wrap: wrap;  
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.images img {
    max-width: 120px;
    width: auto;
    height: auto;
}

/* Trust strip — very dark green, bubbles behind content */
.sponsers-bar.nezay-sponsors {
    --trust-bg-top: #0f2218;
    --trust-bg-bottom: #08150f;
    --trust-badge-bg: #1a3328;
    --trust-icon: #8fef95;
    --trust-divider: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--trust-bg-top) 0%, var(--trust-bg-bottom) 100%);
    border-top: 1px solid rgba(0, 160, 70, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(0, 100, 50, 0.12),
        0 4px 24px rgba(0, 0, 0, 0.35);
    padding: 22px 20px;
    min-height: 0;
    display: flex;
    align-items: center;
}

.trust-strip-bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.trust-strip-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 28%,
        rgba(255, 255, 255, 0.42) 0%,
        rgba(200, 255, 220, 0.14) 28%,
        rgba(80, 180, 120, 0.1) 55%,
        transparent 78%
    );
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        inset -4px -6px 12px rgba(0, 35, 22, 0.15),
        inset 3px 4px 10px rgba(255, 255, 255, 0.2),
        0 0 16px rgba(120, 255, 180, 0.08);
    opacity: 0.5;
    animation: trust-strip-bubble-drift 18s ease-in-out infinite;
}

.trust-strip-bubble:nth-child(1) {
    width: 36px;
    height: 36px;
    left: 4%;
    top: 8%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.trust-strip-bubble:nth-child(2) {
    width: 22px;
    height: 22px;
    left: 14%;
    bottom: 12%;
    top: auto;
    animation-duration: 12s;
    animation-delay: -2s;
    opacity: 0.4;
}

.trust-strip-bubble:nth-child(3) {
    width: 52px;
    height: 52px;
    left: 22%;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 20s;
    animation-delay: -5s;
    opacity: 0.35;
}

.trust-strip-bubble:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 38%;
    top: 18%;
    animation-duration: 11s;
    animation-delay: -7s;
}

.trust-strip-bubble:nth-child(5) {
    width: 44px;
    height: 44px;
    left: 48%;
    bottom: 6%;
    top: auto;
    animation-duration: 16s;
    animation-delay: -1s;
    opacity: 0.42;
}

.trust-strip-bubble:nth-child(6) {
    width: 28px;
    height: 28px;
    right: 38%;
    left: auto;
    top: 22%;
    animation-duration: 15s;
    animation-delay: -4s;
}

.trust-strip-bubble:nth-child(7) {
    width: 64px;
    height: 64px;
    right: 22%;
    left: auto;
    top: 50%;
    margin-top: -32px;
    animation-duration: 22s;
    animation-delay: -9s;
    opacity: 0.28;
}

.trust-strip-bubble:nth-child(8) {
    width: 20px;
    height: 20px;
    right: 12%;
    left: auto;
    bottom: 20%;
    top: auto;
    animation-duration: 13s;
    animation-delay: -3s;
}

.trust-strip-bubble:nth-child(9) {
    width: 32px;
    height: 32px;
    right: 4%;
    left: auto;
    top: 12%;
    animation-duration: 17s;
    animation-delay: -6s;
}

.trust-strip-bubble:nth-child(10) {
    width: 26px;
    height: 26px;
    left: 58%;
    top: 6%;
    animation-duration: 14s;
    animation-delay: -11s;
    opacity: 0.38;
}

.trust-strip-bubble:nth-child(11) {
    width: 40px;
    height: 40px;
    left: 72%;
    bottom: 8%;
    top: auto;
    animation-duration: 19s;
    animation-delay: -8s;
}

.trust-strip-bubble:nth-child(12) {
    width: 16px;
    height: 16px;
    left: 92%;
    top: 40%;
    animation-duration: 10s;
    animation-delay: -4s;
    opacity: 0.45;
}

@keyframes trust-strip-bubble-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5px, -6px) scale(1.03);
    }

    66% {
        transform: translate(-4px, 4px) scale(0.98);
    }
}

/* Fix vertical center for bubble 3 — animation overrides transform */
.trust-strip-bubble:nth-child(3) {
    top: 50%;
    margin-top: -26px;
    transform: none;
}

.nezay-sponsors .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1120px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px 8px;
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

/* Vertical rule between items — height aligned with text line */
.trust-strip-lead {
    flex: 0 0 1px;
    width: 1px;
    height: 1.35em;
    min-height: 22px;
    max-height: 26px;
    margin-right: clamp(16px, 4vw, 36px);
    margin-left: 0;
    background: var(--trust-divider);
    border-radius: 1px;
    align-self: center;
}

.trust-strip-item:first-child .trust-strip-lead {
    display: none;
    width: 0;
    min-width: 0;
    margin: 0;
    background: transparent;
}

.trust-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: var(--trust-badge-bg);
    color: var(--trust-icon);
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-strip-icon i {
    font-size: 1.1rem;
}

.trust-strip-text {
    color: #ffffff;
    white-space: nowrap;
}

@media (max-width: 960px) and (min-width: 481px) {
    .trust-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: stretch;
        gap: 0;
        max-width: 560px;
        margin: 0 auto;
    }

    .trust-strip-lead {
        display: none;
        width: 0;
        margin: 0;
    }

    .trust-strip-item {
        justify-content: flex-start;
        padding: 16px 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-strip-item:nth-child(2n) {
        border-right: none;
    }

    .trust-strip-item:nth-child(n + 3) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .sponsers-bar.nezay-sponsors {
        padding: 16px 16px;
    }

    .trust-strip {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-width: none;
    }

    .trust-strip-item {
        justify-content: flex-start;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none;
    }

    .trust-strip-item:last-child {
        border-bottom: none;
    }

    .trust-strip-lead {
        display: none !important;
        margin: 0 !important;
    }

    .trust-strip-text {
        white-space: normal;
        text-align: left;
    }
}

/* ========== Nezay Exchange Hero (first part: title → sponsors bar) ========== */
/* Landing image more visible; tall rising lime; bubbles on top */
.nezay-hero {
    background-color: #05140e;
    background-image:
        radial-gradient(
            ellipse 95% 85% at 50% 42%,
            rgba(140, 255, 185, 0.28) 0%,
            rgba(80, 220, 130, 0.12) 38%,
            transparent 62%
        ),
        radial-gradient(
            ellipse 150% 120% at 50% 100%,
            rgba(150, 255, 190, 0.55) 0%,
            rgba(90, 230, 140, 0.28) 28%,
            rgba(50, 180, 100, 0.12) 48%,
            transparent 68%
        ),
        radial-gradient(ellipse 110% 90% at 8% 95%, rgba(110, 245, 150, 0.35) 0%, transparent 52%),
        radial-gradient(ellipse 110% 90% at 92% 95%, rgba(110, 245, 150, 0.35) 0%, transparent 52%),
        linear-gradient(
            180deg,
            rgba(3, 14, 9, 0.82) 0%,
            rgba(4, 20, 13, 0.72) 18%,
            rgba(5, 26, 17, 0.58) 38%,
            rgba(5, 30, 20, 0.42) 55%,
            rgba(6, 34, 22, 0.28) 72%,
            rgba(7, 40, 26, 0.14) 88%,
            rgba(8, 44, 28, 0.06) 100%
        ),
        url("images/Landing%20images.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: auto;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-bottom: 1px solid rgba(0, 200, 90, 0.25);
    box-shadow: inset 0 70px 90px rgba(0, 0, 0, 0.32);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(100, 255, 150, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 120% 70% at 50% 100%, rgba(170, 255, 200, 0.14) 0%, transparent 50%);
    animation: hero-rise-glow 12s ease-in-out infinite alternate;
}

@keyframes hero-rise-glow {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

/* Floating glass bubbles */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 28% 28%,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(180, 255, 210, 0.12) 22%,
        rgba(60, 160, 100, 0.08) 55%,
        rgba(20, 60, 40, 0.04) 78%,
        transparent 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset -6px -10px 18px rgba(0, 40, 25, 0.2),
        inset 4px 6px 14px rgba(255, 255, 255, 0.15),
        0 0 24px rgba(100, 255, 160, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: hero-bubble-drift 22s ease-in-out infinite;
    opacity: 0.55;
}

.hero-bubble:nth-child(1) {
    width: 56px;
    height: 56px;
    left: 6%;
    bottom: 18%;
    animation-duration: 19s;
    animation-delay: 0s;
}

.hero-bubble:nth-child(2) {
    width: 92px;
    height: 92px;
    left: 14%;
    bottom: 8%;
    animation-duration: 25s;
    animation-delay: -3s;
    opacity: 0.4;
}

.hero-bubble:nth-child(3) {
    width: 38px;
    height: 38px;
    left: 22%;
    bottom: 42%;
    animation-duration: 16s;
    animation-delay: -7s;
}

.hero-bubble:nth-child(4) {
    width: 72px;
    height: 72px;
    right: 12%;
    bottom: 22%;
    left: auto;
    animation-duration: 21s;
    animation-delay: -2s;
}

.hero-bubble:nth-child(5) {
    width: 48px;
    height: 48px;
    right: 6%;
    bottom: 10%;
    left: auto;
    animation-duration: 18s;
    animation-delay: -9s;
    opacity: 0.5;
}

.hero-bubble:nth-child(6) {
    width: 110px;
    height: 110px;
    right: 18%;
    bottom: 38%;
    left: auto;
    animation-duration: 28s;
    animation-delay: -5s;
    opacity: 0.32;
}

.hero-bubble:nth-child(7) {
    width: 44px;
    height: 44px;
    left: 40%;
    bottom: 55%;
    animation-duration: 20s;
    animation-delay: -11s;
}

.hero-bubble:nth-child(8) {
    width: 64px;
    height: 64px;
    left: 48%;
    bottom: 12%;
    animation-duration: 24s;
    animation-delay: -4s;
    opacity: 0.38;
}

.hero-bubble:nth-child(9) {
    width: 28px;
    height: 28px;
    left: 72%;
    bottom: 48%;
    animation-duration: 14s;
    animation-delay: -8s;
}

.hero-bubble:nth-child(10) {
    width: 80px;
    height: 80px;
    left: 3%;
    top: 28%;
    bottom: auto;
    animation-duration: 26s;
    animation-delay: -6s;
    opacity: 0.28;
}

.hero-bubble:nth-child(11) {
    width: 52px;
    height: 52px;
    right: 8%;
    top: 22%;
    left: auto;
    bottom: auto;
    animation-duration: 23s;
    animation-delay: -12s;
    opacity: 0.3;
}

.hero-bubble:nth-child(12) {
    width: 34px;
    height: 34px;
    left: 55%;
    top: 18%;
    bottom: auto;
    animation-duration: 17s;
    animation-delay: -1s;
    opacity: 0.42;
}

.hero-bubble:nth-child(13) {
    width: 22px;
    height: 22px;
    left: 30%;
    top: 45%;
    bottom: auto;
    animation-duration: 15s;
    animation-delay: -4s;
    opacity: 0.35;
}

.hero-bubble:nth-child(14) {
    width: 68px;
    height: 68px;
    left: 65%;
    bottom: 28%;
    animation-duration: 24s;
    animation-delay: -10s;
    opacity: 0.3;
}

.hero-bubble:nth-child(15) {
    width: 18px;
    height: 18px;
    right: 25%;
    top: 35%;
    left: auto;
    bottom: auto;
    animation-duration: 13s;
    animation-delay: -2s;
    opacity: 0.4;
}

.hero-bubble:nth-child(16) {
    width: 54px;
    height: 54px;
    left: 8%;
    top: 48%;
    bottom: auto;
    animation-duration: 20s;
    animation-delay: -8s;
    opacity: 0.33;
}

.hero-bubble:nth-child(17) {
    width: 42px;
    height: 42px;
    right: 4%;
    bottom: 52%;
    left: auto;
    animation-duration: 19s;
    animation-delay: -14s;
    opacity: 0.38;
}

.hero-bubble:nth-child(18) {
    width: 26px;
    height: 26px;
    left: 50%;
    top: 12%;
    bottom: auto;
    animation-duration: 16s;
    animation-delay: -5s;
    opacity: 0.32;
}

.hero-bubble:nth-child(19) {
    width: 88px;
    height: 88px;
    left: 25%;
    bottom: 5%;
    animation-duration: 27s;
    animation-delay: -6s;
    opacity: 0.22;
}

.hero-bubble:nth-child(20) {
    width: 20px;
    height: 20px;
    right: 35%;
    bottom: 18%;
    left: auto;
    animation-duration: 14s;
    animation-delay: -11s;
    opacity: 0.45;
}

.hero-bubble:nth-child(21) {
    width: 36px;
    height: 36px;
    left: 78%;
    top: 52%;
    bottom: auto;
    animation-duration: 21s;
    animation-delay: -3s;
    opacity: 0.36;
}

.hero-bubble:nth-child(22) {
    width: 62px;
    height: 62px;
    left: 12%;
    bottom: 35%;
    animation-duration: 23s;
    animation-delay: -9s;
    opacity: 0.28;
}

.hero-bubble:nth-child(23) {
    width: 16px;
    height: 16px;
    right: 42%;
    top: 28%;
    left: auto;
    bottom: auto;
    animation-duration: 12s;
    animation-delay: -7s;
    opacity: 0.5;
}

@keyframes hero-bubble-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(8px, -14px) scale(1.03);
    }
    50% {
        transform: translate(-6px, -22px) scale(0.98);
    }
    75% {
        transform: translate(10px, -8px) scale(1.02);
    }
}

.nezay-hero .container {
    position: relative;
    z-index: 1;
}

/* Nezay header — logo left, nav centered on page */
.nezay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 8px;
    position: relative;
    min-height: 62px;
}

.nezay-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.4rem;
    z-index: 2;
    flex-shrink: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.8);
}

.nezay-logo .logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    object-fit: contain;
}

.nezay-hero .nezay-header {
    min-height: 64px;
    padding: 12px 0 8px;
}

.nezay-hero .nezay-logo {
    gap: 10px;
    font-size: 1.42rem;
}

.nezay-hero .nezay-logo .logo-icon {
    width: 54px;
    height: 54px;
}

.nezay-hero .nezay-logo .logo-text {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.22rem, 2.9vw, 1.68rem);
    line-height: 1;
}

.nezay-hero .nezay-header-spacer {
    width: min(228px, 34vw);
}

.nezay-nav-center {
    position: static;
    transform: none;
    z-index: 1;
}

/* Header CTA uses same styling as hero "Get Started" */
.hero-header-cta {
    margin-left: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Header layout: logo left, nav centered, CTA right */
.nezay-hero .nezay-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.nezay-hero .nezay-nav-center {
    justify-self: center;
}

.nezay-hero .hero-header-cta {
    justify-self: end;
}

.nezay-header-spacer {
    width: min(220px, 32vw);
    flex-shrink: 0;
    pointer-events: none;
    visibility: hidden;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    object-fit: contain;
}

.nezay-header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nezay-header nav ul li {
    display: flex;
    align-items: center;
}

.nezay-header nav ul li a {
    color: rgba(255, 255, 255, 0.98);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45), 0 0 1px rgba(0, 0, 0, 0.6);
}

.nezay-header nav ul li a:hover {
    color: #7fff9e;
    text-shadow: 0 0 12px rgba(0, 255, 140, 0.35);
}

.hero-btn-get-started {
    background: #00b432;
    color: #fff;
    border: none;
    padding: 14px 36px;
    min-width: 188px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-family: var(--font-main);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.hero-btn-get-started:hover {
    background: #00a02e;
    box-shadow: 0 4px 20px rgba(0, 180, 50, 0.35);
}

/* Hero content layout */
.hero-content {
    padding: 12px 0 36px;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px 40px;
    max-width: 1220px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    min-width: 280px;
    max-width: 560px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-main), sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
    text-shadow:
        0 2px 28px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.4);
    max-width: 18em;
}

.hero-title-accent {
    color: #fff;
}

.hero-highlights {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 420px;
    font-family: var(--font-main);
    font-size: 0.975rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5);
}

.hero-highlights li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    line-height: 1.45;
    text-align: center;
}

.hero-highlights li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d050;
    box-shadow: 0 0 10px rgba(0, 208, 80, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

.btn-download-app {
    background: #00b432;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-download-app:hover {
    background: #009a2b;
    transform: scale(1.02);
}

/* App store badges — centered, professional */
.hero-text .app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hero-text .app-badges .badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-text .app-badges .badge span {
    text-align: left;
}

.hero-text .app-badges .badge i {
    font-size: 1.4rem;
    color: #fff;
    opacity: 0.95;
}

.hero-text .app-badges .badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

/* Hero visual: phone + floating icons */
.hero-visual {
    position: relative;
    flex: 0 1 520px;
    min-width: 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    position: relative;
    z-index: 2;
}

.hero-phone img {
    width: 100%;
    max-width: min(560px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.hero-floating {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b432;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.hero-floating i {
    font-size: 2.5rem;
}

.hero-btc {
    top: 10%;
    left: 5%;
    color: #f7931a;
    filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.4));
    animation-delay: 0s;
}

.hero-card {
    top: 25%;
    left: -5%;
    color: #00b432;
    font-size: 2rem;
    animation-delay: 0.5s;
}

.hero-eth {
    top: 15%;
    right: 5%;
    color: #00b432;
    filter: drop-shadow(0 0 15px rgba(0, 180, 50, 0.4));
    animation-delay: 1s;
}

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

/* Feature Cards Section */
.feature-cards {
    position: relative;
    padding: 80px 0;
    background-color: #1e4d3d;
    background-image: linear-gradient(135deg, rgba(27, 61, 47, 0.35) 0%, rgba(30, 77, 61, 0.3) 50%, rgba(52, 120, 93, 0.25) 100%), url("/images/Landing%20images.png");
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.feature-cards-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.feature-cards .container {
    position: relative;
    z-index: 1;
    background-image: url("/images/Landing%20images.png");
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 300px auto;
    border-radius: 24px;
    padding: 24px;
}

.feature-cards-title {
    font-family: var(--font-main), sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 28px;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: rgba(30, 60, 50, 0.6);
    background-image: linear-gradient(rgba(30, 60, 50, 0.65), rgba(30, 60, 50, 0.65)), url("/images/Landing%20images.png");
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 200px auto;
    border-radius: 24px;
    padding: 28px 24px;
    color: #fff;
    text-align: center;
    font-family: var(--font-main);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
}

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-card-icon i {
    font-size: 1.75rem;
    color: #00b432;
}

.feature-card-icon .fa-bitcoin {
    color: #f7931a;
}

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

@media (max-width: 576px) {
    .feature-cards {
        padding: 48px 0;
    }
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-visual {
        flex: 1 1 100%;
        min-height: 320px;
    }

    .hero-phone img {
        max-width: min(480px, 92vw);
    }
    .hero-floating {
        font-size: 1.5rem;
    }
    .hero-floating i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .nezay-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding-bottom: 12px;
    }

    .nezay-hero .nezay-header {
        display: flex;
    }

    .nezay-nav-center {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero-header-cta {
        display: none;
    }

    .nezay-nav-center ul {
        justify-content: center;
    }

    .nezay-header-spacer {
        display: none;
    }

    .nezay-logo {
        order: 1;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-highlights {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-text .app-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        font-size: 0.875rem;
        gap: 12px;
    }

    .hero-text .app-badges .badge {
        flex: 1 1 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-text .app-badges .badge span {
        text-align: center;
    }
}

@media (max-width: 1200px) {
    nav:not(.nezay-nav-center) {
        display: none;
    }

    .landing-image {
        width: 60%;
        margin-bottom: 10px;
    }
    section .container {

        justify-content: center;
    }

    section .text {
        max-width: 100%;
        text-align: center;
    }

    section .text h2 {
        text-align: center;
    }

    section .text p {
        text-align: center;
    }

    section .landing-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    section .landing-image img {
        object-fit: cover;
    }
    .images {
        row-gap: 30px;
    }
    
}

@media (max-width: 768px) {
    section .text {
        margin-top: 20px;
    }
    
    section .text h2 {
        font-size: 3.5rem; 
    }
}

@media (max-width: 480px) {
    section .text h2 {
        font-size: 2rem;
    }
}

/* About Us – soft green throughout (same as Featured) */
.about-us {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #e8f5e9 0%, #c8e6c9 40%, #a5d6a7 70%, #81c784 100%);
    overflow: hidden;
}

.about-us-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse 50% 70% at 80% 70%, rgba(129, 199, 132, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.about-us .container {
    position: relative;
    z-index: 1;
    background: rgba(232, 245, 233, 0.85);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 8px 40px rgba(76, 175, 80, 0.15), 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(129, 199, 132, 0.5);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.about-us-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.about-us-illustration {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 28px;
    object-fit: contain;
    display: block;
}

.about-us-content {
    font-family: var(--font-main);
}

.about-us-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 12px;
}

.about-us-title {
    font-family: var(--font-main), sans-serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.25;
    color: #1b5e20;
    margin: 0 0 16px;
}

.about-us-intro {
    font-size: 1.12rem;
    line-height: 1.6;
    font-weight: 500;
    color: #33691e;
    margin: 0 0 32px;
    max-width: 540px;
}

.about-us-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-features li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(129, 199, 132, 0.6);
    border-radius: 22px;
    transition: background 0.2s, border-color 0.2s;
}

.about-us-features li:hover {
    background: rgba(200, 230, 201, 0.8);
    border-color: rgba(102, 187, 106, 0.8);
}

.about-us-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 142, 60, 0.2);
    border-radius: 16px;
    color: #2e7d32;
}

.about-us-feature-icon i {
    font-size: 1.2rem;
}

.about-us-features h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1b5e20;
    margin: 0 0 6px;
}

.about-us-features p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #33691e;
    margin: 0;
}

.about-us-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(129, 199, 132, 0.5);
}

.about-us-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.about-us-metric-value {
    font-family: var(--font-main), sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1b5e20;
    line-height: 1.2;
}

.about-us-metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2e7d32;
    text-transform: capitalize;
}

@media (max-width: 992px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-us-intro {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-us-features li {
        text-align: left;
    }

    .about-us-metrics {
        justify-content: center;
        margin-top: 32px;
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .about-us .container {
        padding: 40px 24px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 64px 0;
    }

    .about-us .container {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .about-us-illustration {
        max-width: 100%;
    }

    .about-us-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .about-us-metric {
        align-items: center;
        text-align: center;
    }

    .about-us-metric-value {
        font-size: 1.5rem;
    }
}

/* How it works */
.how-it-works-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #e8f5e9 0%, #c8e6c9 40%, #a5d6a7 70%, #81c784 100%);
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse 50% 70% at 80% 70%, rgba(129, 199, 132, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0;
    justify-content: unset;
}

/* Visible container for the whole section */
.how-it-works-box {
    max-width: 1140px;
    margin: 0 auto;
    background: rgba(232, 245, 233, 0.95);
    border-radius: 24px;
    padding: 64px 72px 56px;
    box-shadow: 0 12px 48px rgba(46, 125, 50, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(129, 199, 132, 0.5);
}

.how-it-works-inner {
    max-width: 100%;
}

.how-it-works-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* "How it works" – main headline: big and bold */
.how-it-works-label {
    display: block;
    width: 100%;
    font-family: var(--font-main), sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1b5e20;
    margin-bottom: 10px;
    order: 1;
}

/* "Get Started in Minutes" – smaller subheading */
.how-it-works-title {
    font-family: var(--font-main), sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: #2e7d32;
    margin: 0 0 20px;
    order: 2;
}

.how-it-works-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 500;
    color: #33691e;
    margin: 0;
    max-width: 500px;
    order: 3;
}

.how-it-works-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.how-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(129, 199, 132, 0.45);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(76, 175, 80, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.18);
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2e7d32, #1b5e20);
    color: #fff;
    font-family: var(--font-third);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.how-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.how-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(46, 125, 50, 0.12);
    border-radius: 18px;
    color: #2e7d32;
}

.how-step-icon i {
    font-size: 1.2rem;
}

.how-step-title {
    font-family: var(--font-third);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1b5e20;
    margin: 0;
    line-height: 1.3;
}

.how-step-desc {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    color: #33691e;
    margin: 0;
}

.how-step-connector {
    flex: 0 0 24px;
    align-self: center;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.4), rgba(46, 125, 50, 0.7));
    border-radius: 1px;
}

.how-it-works-cta-wrap {
    text-align: center;
}

.how-it-works-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.35);
}

.how-it-works-cta:hover {
    background: #1b5e20;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 94, 32, 0.45);
}

.how-it-works-cta::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

@media (max-width: 992px) {
    .how-step-connector {
        width: 2px;
        height: 24px;
        flex: 0 0 auto;
    }

    .how-it-works-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .how-it-works-box {
        padding: 52px 48px 44px;
    }

    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-label {
        font-size: 2.15rem;
    }

    .how-it-works-title {
        font-size: 1.15rem;
    }

    .how-step {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 64px 0;
    }

    .how-it-works-box {
        padding: 40px 28px 36px;
        border-radius: 20px;
    }

    .how-it-works-label {
        font-size: 1.85rem;
    }

    .how-it-works-title {
        font-size: 1.1rem;
    }

    .how-it-works-intro {
        font-size: 1rem;
    }

    .how-it-works-steps {
        margin-bottom: 36px;
    }

    .how-step-number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .how-step-title {
        font-size: 1.05rem;
    }

    .how-step-desc {
        font-size: 0.9rem;
    }
}

/* Ad – own section, own container (green) */
.ad-section {
    padding: 0;
    background: transparent;
}

.ad-container {
    background-color: #1e4d3d;
    background-image: linear-gradient(135deg, rgba(27, 61, 47, 0.45) 0%, rgba(30, 77, 61, 0.4) 50%, rgba(52, 120, 93, 0.35) 100%), url("/images/Landing%20images.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
    border-radius: 0;
}

.ad-container .container {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.ad-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.ad-image-wrap {
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.08) brightness(1.05);
}

.ad-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 50%;
    flex: 1;
}

.ad-text-wrap p {
    color: #e0e8e4;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: 5px;
    max-width: 90%;
}

.ad-text-wrap h2 {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 700;
    font-family: var(--font-main), sans-serif;
    color: #fff;
    margin: 0;
}

.ad-text-wrap .main-button {
    margin-top: 24px;
}

@media (max-width: 992px) {
    .ad-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ad-text-wrap,
    .ad-image-wrap {
        max-width: 100%;
        align-items: center;
    }

    .ad-text-wrap {
        order: 1;
        align-items: center;
    }

    .ad-image-wrap {
        order: 2;
        margin-top: 10px;
    }

    .ad-text-wrap h2 {
        font-size: 36px;
        text-align: center;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .ad-container {
        padding: 60px 20px;
    }

    .ad-text-wrap h2 {
        font-size: 32px;
        text-align: center;
    }

    .ad-text-wrap {
        align-items: center;
    }

    .ad-image-wrap img {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .ad-container {
        padding: 48px 16px;
    }

    .ad-text-wrap h2 {
        font-size: 28px;
        text-align: center;
    }

    .ad-text-wrap p {
        text-align: center;
        margin-left: 0;
    }

    .ad-text-wrap .main-button {
        align-self: center;
    }
}

/* Start Services - FAQ */
.services.faq-section {
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    padding-bottom: 48px;
}

.services.faq-section .container {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
    color: #1b5e20;
    margin-bottom: 8px;
}

.faq-header p {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 700;
    color: #1b5e20;
    letter-spacing: 0.01em;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-third);
    font-size: 18px;
    font-weight: 700;
    color: #031B1D;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background: #f1f8e9;
}

.faq-question:focus-visible {
    outline: 2px solid #03A300;
    outline-offset: 2px;
}

.faq-item.is-open .faq-question {
    color: #03A300;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #03A300;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0;
    visibility: hidden;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
    visibility: visible;
}

.faq-answer p {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #676666;
    margin: 0;
    padding: 0 24px 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
    margin-top: -1px;
}

@media (max-width: 992px) {
    .faq-header h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .faq-question {
        font-size: 17px;
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 14px 20px 18px 20px;
        padding-top: 14px;
    }
}

@media (max-width: 576px) {
    .services.faq-section .container {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-header h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 22px;
        padding: 12px 18px 16px 18px;
        padding-top: 12px;
    }
}

@media (max-width: 400px) {
    .faq-header h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }
}

/* Start Quotes */
.opinions {
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    padding: 80px;
}
.opinions .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.opinions h2 {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}
.quotes-group {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.quotes-group .quote {
    background-color: #fff;
    padding: 36px 47px;
    color: #161919;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 28px;
    width: 100%; 
    max-width: 350px; 
    text-align: justify;
}

.quotes-group .quote i {
    color: #009E3F;
    font-size: 30px;
    margin-bottom: 30px;
}

.quotes-group .quote p {
    margin-bottom: 30px;
    
}

.quote .profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote .profile img {
    max-width:100%;
}

.profile .details img {
    max-width: 100%;
}

.profile .details p {
    font-size: 16px;
    line-height: 24px;
    color: #161919;
}


.profile .details span {
    font-size: 14px;
}

.quotes-group .active {
    background-color: #2d6b54;
    color: #FFFFFF;
}

.quotes-group .active .profile .details span,
.quotes-group .active .profile .details h4 {
    color: #FFFFFF;
}

.quotes-group .active .quote i {
    color: #FFFFFF;
}

/* Animated testimonial avatar (main profile image only) */
.quote .profile img.quote-avatar {
    border-radius: 50%;
    animation: avatar-float 3s ease-in-out infinite;
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.quote .profile .details img {
    max-width: 100%;
}

@keyframes avatar-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}


@media (max-width: 992px) {
    .opinions {
        padding: 80px 50px;
    }

    .opinions h2 {
        font-size: 36px;
    }

    .quotes-group .quote {
        font-size: 15px;
        padding: 20px;
    }
}

.opinions .container .secondary-button {
    margin-top: 40px;
    align-self: center;
}

/* Start Footer */
.footer {
    margin-top: 70px;
    margin-bottom: 50px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 32px;
    color: #031B1D;
    gap: 11px;
}

.footer-logo .logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 0;
    object-fit: contain;
}

.footer-logo .logo-text {
    color: #031B1D;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(1.38rem, 2.4vw, 1.82rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer .container .download {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ios, .android {
    background-color: #000;
    display: flex;
    color: white;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    padding: 12px 22px;
}

.ios i, .android i {
    font-size: 32px;
}
.ios p, .android p {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    text-align: justify;
}

.ios p span, .android p span {
    font-size: 19px;
}

.footer .container ul {
    display: flex;
    list-style: none;
    gap: 45px;
    margin-top: 30px;
}
.footer .container ul li a  {
    text-decoration: none;
    color: #646161;
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 500;
}

.footer .container ul li a:hover {
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.special-icons a {
    display: inline-block;
}
.social-icons i {
    background-color: #008f2e;
    border-radius: 32px;
    font-size: 20px;
    padding: 10px;
    color: #fff
}


.feedback {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.feedback span {
    font-weight: 600;
    margin-top: 5px;
}

.copyright {
    margin-top: 50px;
    font-family: var(--font-main);
    font-weight: 500; 
    color: #646060; 
    font-size: 15px;
    text-align: center;
    line-height: 1.6; 
    letter-spacing: 0.5px;
}

.copyright a {
    color: #006022; 
    text-decoration: none;
}

.copyright a:hover {
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer .container ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}