* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
    /*padding-bottom: 76px;*/
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

/* HEADER */

/* HEADER */
.top-strip-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px;
}

.support-link {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

.whatsapp-btn {
    background: #16a34a !important;
    color: #ffffff !important;
}

.menu-toggle {
    display: none;
    border: none;
    background: #ffc107;
    color: #ffffff;
    font-size: 22px;
    width: 38px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .top-strip-inner {
        flex-direction: row !important;
        text-align: left !important;
    }

    .support-link {
        font-size: 12px;
    }

    .menu-toggle {
        width: 36px;
        height: 32px;
        font-size: 20px;
    }
}

.support-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.support-link:hover {
    color: #f59e0b;
}

.mobile-top-actions {
    display: none;
}

.top-strip {
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    position: relative;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-strip a {
    color: #f59e0b;
    font-weight: 700;
}

.mobile-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
}

.main-nav {
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    color: #111827;
    font-size: 16px;
    white-space: nowrap;
}

.brand p {
    margin: 0;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    white-space: nowrap;
}

.desktop-nav-links li {
    list-style: none;
}

.desktop-nav-links a {
    color: #111827;
}

.desktop-nav-links a:hover {
    color: #ffc107;
}

.nav-btn {
    background: #ffc107;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    border: none;
    background: #ffc107;
    color: #ffffff;
    font-size: 22px;
    width: 38px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    display: none;
}

/* MOBILE HEADER */

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .top-strip {
        padding: 9px 0;
    }

    .top-strip-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        background: #ffffff;
        list-style: none;
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.16);
        z-index: 99999;
    }

    .mobile-nav-links.active {
        display: block;
    }

    .mobile-nav-links li {
        list-style: none;
    }

    .mobile-nav-links a {
        display: block;
        color: #111827;
        padding: 13px 12px;
        border-bottom: 1px solid #f1f1f1;
        font-weight: 700;
    }

    .mobile-nav-links li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .top-strip {
        font-size: 12px;
    }

    .top-strip-inner {
        gap: 8px;
    }

    .mobile-top-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .menu-toggle {
        width: 36px;
        height: 32px;
        font-size: 20px;
    }
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
    text-align: center;
}

.primary-btn {
    background: #ffc107;
    color: #ffffff;
}

.primary-btn:hover {
    background: #ea580c;
}

.secondary-btn {
    border: 1px solid #ffc107;
    color: #ffc107;
    background: #ffffff;
}

.white-btn {
    background: #ffffff;
    color: #ffc107;
}

/* HERO */

.hero-section,
.inner-hero {
    background: linear-gradient(135deg, #856200, #fffaed);
    padding: 64px 0;
}

.hero-grid,
.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.tagline,
.section-tag {
    display: inline-block;
    color: #ffc107;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.hero-content h1,
.inner-hero h1 {
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #111827;
}

.hero-content p,
.inner-hero p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-box,
.image-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 25px 70px rgba(17,24,39,0.12);
}

.hero-image-box img,
.image-card img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.mobile-trust {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.mobile-trust span {
    background: #ffffff;
    color: #111827;
    border: 1px solid #fed7aa;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* TRUST BAR */

.trust-bar {
    background: #111827;
    color: #ffffff;
    padding: 32px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}

.trust-grid strong {
    display: block;
    color: #ffc107;
    font-size: 32px;
    line-height: 1;
}

.trust-grid span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

/* COMMON SECTIONS */

.section {
    padding: 78px 0;
}

.soft-bg {
    background: #f9fafb;
}

.two-col,
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.section h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section p {
    color: #4b5563;
    margin-bottom: 14px;
}

.highlight-card {
    background: #111827;
    color: #ffffff;
    border-radius: 24px;
    padding: 34px;
}

.highlight-card h3 {
    font-size: 25px;
    margin-bottom: 16px;
}

.highlight-card ul {
    list-style: none;
}

.highlight-card li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.highlight-card li::before {
    content: "✓ ";
    color: #ffc107;
    font-weight: 800;
}

.center-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

/* STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step-card,
.exchange-card,
.service-card,
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 12px 35px rgba(17,24,39,0.05);
}

.step-card span {
    display: inline-block;
    color: #ffc107;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.step-card h3,
.exchange-card h3,
.service-card h2,
.features-list h3,
.faq-item h3 {
    margin-bottom: 10px;
    color: #111827;
}

/* EXCHANGES */

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.exchange-card {
    text-align: center;
}

.exchange-card img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin: 0 auto 14px;
}

.center-btn {
    text-align: center;
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* SERVICES */

.service-card img {
    border-radius: 18px;
    /*height: 230px;*/
    width: 100%;
    object-fit: cover;
    margin-bottom: 22px;
}

.text-link {
    color: #ffc107;
    font-weight: 800;
}

/* FEATURES */

.features-list {
    display: grid;
    gap: 18px;
}

.features-list div {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 18px;
}

/* RESPONSIBLE */

.responsible-box {
    background: #111827;
    color: #ffffff;
    text-align: center;
}

.responsible-box p {
    color: #d1d5db;
    max-width: 850px;
    margin: auto;
}

/* FAQ */

.faq-list {
    max-width: 920px;
    margin: auto;
    display: grid;
    gap: 16px;
}

/* CTA */

.final-cta {
    background: linear-gradient(135deg, #ffc107, #bb8d00);
    color: #ffffff;
    text-align: center;
    padding: 75px 0;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.final-cta p {
    margin-bottom: 24px;
}

/* FOOTER */

.footer {
    background: #111827;
    color: #d1d5db;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-row {
    margin-top: 35px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    color: #d1d5db;
}

.footer-contact-row a {
    color: #f59e0b;
}

.footer-contact-row strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-contact-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.footer-brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer h3,
.footer h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 9px;
}

.footer a:hover {
    color: #ffc107;
}

.footer-btn {
    display: inline-block;
    margin-top: 12px;
    background: #ffc107;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* STICKY WHATSAPP */

.sticky-whatsapp {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    background: #16a34a;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 999px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(22,163,74,0.35);
    display: none;
}

/* TABLET */

@media (max-width: 1100px) {
    .brand img {
        width: 170px;
        max-height: 64px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .nav-btn {
        padding: 9px 14px;
        font-size: 14px;
    }
}

/* MOBILE NAV */

@media (max-width: 980px) {
    .nav-inner {
        gap: 10px;
    }

    .brand img {
        width: 160px;
        max-height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        display: none;
        white-space: normal;
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid #f1f1f1;
    }

    .hero-grid,
    .inner-hero-grid,
    .two-col,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .exchange-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-whatsapp {
        display: block;
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    .top-strip-inner {
        
        gap: 3px;
        text-align: center;
        line-height: 1.3;
    }

    .main-nav {
        padding: 7px 0;
    }

    .brand img {
        width: 145px;
        max-height: 54px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .hero-section,
    .inner-hero {
        padding: 0px 0 46px;
    }

    .hero-grid,
    .inner-hero-grid {
        gap: 26px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo {
        width: 120px;
        margin: 0 auto 16px;
    }

    .tagline,
    .section-tag {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-content h1,
    .inner-hero h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-content p,
    .inner-hero p {
        font-size: 15.5px;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 13px 18px;
    }

    .mobile-trust {
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }

    .mobile-trust span {
        font-size: 12px;
        padding: 7px 10px;
    }

    .hero-image-box {
        display: none;
    }

    .trust-bar {
        padding: 24px 0;
    }

    .trust-grid,
    .steps-grid,
    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid strong {
        font-size: 28px;
    }

    .section {
        padding: 52px 0;
    }

    .section h2 {
        font-size: 28px;
    }

    .center-heading {
        margin-bottom: 30px;
    }

    .step-card,
    .exchange-card,
    .service-card,
    .faq-item,
    .highlight-card {
        padding: 22px;
        border-radius: 18px;
    }

    .service-card img {
        /*height: 190px;*/
    }

    .final-cta {
        padding: 58px 0;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .footer {
        padding-top: 45px;
    }

    .footer-brand {
        display: block;
    }

    .footer-brand img {
        width: 155px;
        margin-bottom: 12px;
    }
}


.features-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 26px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(17,24,39,0.05);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #111827;
}

.feature-box p {
    color: #4b5563;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .features-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-six {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 22px;
        border-radius: 18px;
    }
}

